mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2026-01-05 14:31:43 +01:00
change default reaction limit to 1
This commit is contained in:
parent
38b8c494b8
commit
c19e74051c
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@
|
|||
class StatusReactionValidator < ActiveModel::Validator
|
||||
SUPPORTED_EMOJIS = Oj.load_file(Rails.root.join('app', 'javascript', 'mastodon', 'features', 'emoji', 'emoji_map.json').to_s).keys.freeze
|
||||
|
||||
LIMIT = [1, (ENV['MAX_REACTIONS'] || 8).to_i].max
|
||||
LIMIT = [1, (ENV['MAX_REACTIONS'] || 1).to_i].max
|
||||
|
||||
def validate(reaction)
|
||||
return if reaction.name.blank?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue