Your self-hosted, globally interconnected microblogging community. https://joinmastodon.org/
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

8 lines
275 B

  1. class Account < ActiveRecord::Base
  2. has_many :statuses, inverse_of: :account
  3. def subscription(webhook_url)
  4. @subscription ||= OStatus2::Subscription.new(self.remote_url, secret: self.secret, token: self.verify_token, webhook: webhook_url, hub: self.hub_url)
  5. end
  6. end