The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

8 satır
228 B

  1. class Mention < ActiveRecord::Base
  2. belongs_to :account, inverse_of: :mentions
  3. belongs_to :status, inverse_of: :mentions
  4. validates :account, :status, presence: true
  5. validates :account, uniqueness: { scope: :status }
  6. end