Skip to content
Snippets Groups Projects
Commit f497d14b authored by Takeshi Umeda's avatar Takeshi Umeda Committed by Eugen Rochko
Browse files

Addition of update activity distribution by alias, minor correction (#11905)

* Addition of update activity distribution by alias, minor correction

* Distribute Update activity after adding alias
* Add uniqueness verification to alias uri
* accept acct starting with @

* fix double-quoted to single-quoted
parent e35636a0
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ class Settings::AliasesController < Settings::BaseController
@alias = current_account.aliases.build(resource_params)
if @alias.save
ActivityPub::UpdateDistributionWorker.perform_async(current_account.id)
redirect_to settings_aliases_path, notice: I18n.t('aliases.created_msg')
else
render :index
......
......@@ -17,11 +17,17 @@ class AccountAlias < ApplicationRecord
validates :acct, presence: true, domain: { acct: true }
validates :uri, presence: true
validates :uri, uniqueness: { scope: :account_id }
before_validation :set_uri
after_create :add_to_account
after_destroy :remove_from_account
def acct=(val)
val = val.to_s.strip
super(val.start_with?('@') ? val[1..-1] : val)
end
private
def set_uri
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment