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

10 行
437 B

  1. # frozen_string_literal: true
  2. class StatusPinValidator < ActiveModel::Validator
  3. def validate(pin)
  4. pin.errors.add(:status, I18n.t('statuses.pin_errors.reblog')) if pin.status.reblog?
  5. pin.errors.add(:status, I18n.t('statuses.pin_errors.ownership')) if pin.account_id != pin.status.account_id
  6. pin.errors.add(:status, I18n.t('statuses.pin_errors.private')) unless %w(public unlisted).include?(pin.status.visibility)
  7. end
  8. end