mirror of
https://github.com/glitch-soc/mastodon
synced 2025-04-24 15:24:51 +00:00
7 lines
275 B
Ruby
7 lines
275 B
Ruby
class Account < ActiveRecord::Base
|
|
has_many :statuses, inverse_of: :account
|
|
|
|
def subscription(webhook_url)
|
|
@subscription ||= OStatus2::Subscription.new(self.remote_url, secret: self.secret, token: self.verify_token, webhook: webhook_url, hub: self.hub_url)
|
|
end
|
|
end
|