闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.0 KiB

  1. # frozen_string_literal: true
  2. class User < ApplicationRecord
  3. devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable, :confirmable
  4. belongs_to :account, inverse_of: :user
  5. accepts_nested_attributes_for :account
  6. validates :account, presence: true
  7. validates :locale, inclusion: I18n.available_locales.map(&:to_s), unless: 'locale.nil?'
  8. scope :prolific, -> { joins('inner join statuses on statuses.account_id = users.account_id').select('users.*, count(statuses.id) as statuses_count').group('users.id').order('statuses_count desc') }
  9. scope :recent, -> { order('id desc') }
  10. scope :admins, -> { where(admin: true) }
  11. has_settings do |s|
  12. s.key :notification_emails, defaults: { follow: false, reblog: false, favourite: false, mention: false }
  13. s.key :interactions, defaults: { must_be_follower: false, must_be_following: false }
  14. end
  15. def send_devise_notification(notification, *args)
  16. devise_mailer.send(notification, self, *args).deliver_later
  17. end
  18. end