The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

8 行
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