0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-09 21:45:25 +08:00
discourse/plugins/discourse-reactions/config/settings.yml
Martin Brennan 2075f61abb
FEATURE: Promote discourse_reactions_allow_any_emoji out of experimental (#35589)
Followup f002aa4022

We are renaming `discourse_reactions_experimental_allow_any_emoji` to
`discourse_reactions_allow_any_emoji`
and moving it out of the Experimental site setting area.

We originally kept this setting experimental because we thought
there might besome moderation concerts around allowing any emoji to be
used.
However, we later realised the `emoji_deny_list` core site setting can
be used to effectively restrict which emoji are allowed to be used here.

The setting `discourse_reactions_allow_any_emoji` remains off by
default.
I also added some of the discourse-reactions settings to the `emojis`
site setting area to make them easier to find.
2025-10-24 16:51:18 +10:00

31 lines
856 B
YAML
Vendored

discourse_reactions:
discourse_reactions_enabled:
default: false
client: true
discourse_reactions_like_icon:
client: true
default: "heart"
discourse_reactions_reaction_for_like:
client: true
type: enum
default: "heart"
enum: ReactionForLikeSiteSettingEnum
discourse_reactions_enabled_reactions:
type: emoji_list
default: "+1|laughing|open_mouth|clap|confetti_ball|hugs"
client: true
area: "emojis"
discourse_reactions_desaturated_reaction_panel:
default: false
client: true
discourse_reactions_excluded_from_like:
type: emoji_list
default: "-1"
validator: "ReactionsExcludedFromLikeSiteSettingValidator"
area: "emojis"
discourse_reactions_like_sync_enabled:
default: true
discourse_reactions_allow_any_emoji:
default: false
client: true
area: "emojis"