mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 20:16:19 +08:00
644e6c7f46
Allow admins to specify if the flag should be `auto_action_type`. If yes, then when an admin flags a post, it is automatically actioned. Meta: https://meta.discourse.org/t/allow-creation-of-custom-flags-which-auto-hide-content-similar-to-spam-and-inapproriate/329894
51 lines
1.2 KiB
Ruby
51 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class FlagSerializer < ApplicationSerializer
|
|
attributes :id,
|
|
:name,
|
|
:name_key,
|
|
:description,
|
|
:short_description,
|
|
:applies_to,
|
|
:position,
|
|
:require_message,
|
|
:enabled,
|
|
:is_flag,
|
|
:applies_to,
|
|
:is_used,
|
|
:auto_action_type
|
|
|
|
def i18n_prefix
|
|
"#{@options[:target] || "post_action"}_types.#{object.name_key}"
|
|
end
|
|
|
|
def name
|
|
# system flags are using i18n translations when custom flags are using value entered by admin
|
|
I18n.t("#{i18n_prefix}.title", default: object.name)
|
|
end
|
|
|
|
def description
|
|
I18n.t(
|
|
"#{i18n_prefix}.description",
|
|
default: object.description.to_s,
|
|
base_path: Discourse.base_path,
|
|
)
|
|
end
|
|
|
|
def short_description
|
|
I18n.t("#{i18n_prefix}.short_description", base_path: Discourse.base_path, default: "")
|
|
end
|
|
|
|
def is_flag
|
|
!object.score_type && object.id != PostActionType::LIKE_POST_ACTION_ID
|
|
end
|
|
|
|
def is_used
|
|
@options[:used_flag_ids].include?(object.id)
|
|
end
|
|
|
|
def applies_to
|
|
Array.wrap(object.applies_to)
|
|
end
|
|
end
|