FEATURE: Mention @here to notify users in topic (#14900)

Use @here to mention all users that were allowed to topic directly or
through group, who liked topics or read the topic. Only first 10 users
will be notified.
This commit is contained in:
Bianca Nenciu
2021-11-23 22:25:54 +02:00
committed by GitHub
parent 0ededb1454
commit 73760c77d9
13 changed files with 197 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
# frozen_string_literal: true
class NotUsernameValidator
def initialize(opts = {})
@opts = opts
end
def valid_value?(val)
val.blank? || !User.where(username: val).exists?
end
def error_message
I18n.t('site_settings.errors.valid_username')
end
end