Merge remote-tracking branch 'origin/master' into merge-upstream
Conflicts: app/controllers/auth/confirmations_controller.rb
This commit is contained in:
@ -30,6 +30,10 @@ class Form::AdminSettings
|
||||
:bootstrap_timeline_accounts=,
|
||||
:min_invite_role,
|
||||
:min_invite_role=,
|
||||
:activity_api_enabled,
|
||||
:activity_api_enabled=,
|
||||
:peers_api_enabled,
|
||||
:peers_api_enabled=,
|
||||
to: Setting
|
||||
)
|
||||
end
|
||||
|
@ -138,6 +138,7 @@ class Status < ApplicationRecord
|
||||
end
|
||||
|
||||
after_create_commit :store_uri, if: :local?
|
||||
after_create_commit :update_statistics, if: :local?
|
||||
|
||||
around_create Mastodon::Snowflake::Callbacks
|
||||
|
||||
@ -336,4 +337,9 @@ class Status < ApplicationRecord
|
||||
def set_local
|
||||
self.local = account.local?
|
||||
end
|
||||
|
||||
def update_statistics
|
||||
return unless public_visibility? || unlisted_visibility?
|
||||
ActivityTracker.increment('activity:statuses:local')
|
||||
end
|
||||
end
|
||||
|
@ -122,9 +122,19 @@ class User < ApplicationRecord
|
||||
update!(disabled: false)
|
||||
end
|
||||
|
||||
def confirm
|
||||
return if confirmed?
|
||||
|
||||
super
|
||||
update_statistics!
|
||||
end
|
||||
|
||||
def confirm!
|
||||
return if confirmed?
|
||||
|
||||
skip_confirmation!
|
||||
save!
|
||||
update_statistics!
|
||||
end
|
||||
|
||||
def promote!
|
||||
@ -202,4 +212,9 @@ class User < ApplicationRecord
|
||||
def sanitize_languages
|
||||
filtered_languages.reject!(&:blank?)
|
||||
end
|
||||
|
||||
def update_statistics!
|
||||
BootstrapTimelineWorker.perform_async(account_id)
|
||||
ActivityTracker.increment('activity:accounts:local')
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user