mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 00:56:22 +00:00
14 lines
284 B
Ruby
14 lines
284 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module ModerationConcern
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
private
|
||
|
|
||
|
def redirect_to_moderation_queue!
|
||
|
redirect_back fallback_location: site_moderation_queue_path(**(session[:moderation_queue_filters] || {}))
|
||
|
end
|
||
|
end
|
||
|
end
|