mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 20:36:21 +00:00
8 lines
173 B
Ruby
8 lines
173 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module ModerationQueueHelper
|
||
|
def filter_states(**args)
|
||
|
params.permit(:state, :actor_state, :activity_pub_state).merge(**args)
|
||
|
end
|
||
|
end
|