14 lines
328 B
Ruby
14 lines
328 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ModalController < ApplicationController
|
||
|
include ActionView::Helpers::TagHelper
|
||
|
include Turbo::FramesHelper
|
||
|
|
||
|
skip_before_action :find_active_announcements, :banned?
|
||
|
|
||
|
def close
|
||
|
redirect_to root_path unless turbo_frame_request?
|
||
|
render inline: turbo_frame_tag("modal")
|
||
|
end
|
||
|
end
|