* 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
@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
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