user.rb 1.1 KB

12345678910111213141516171819202122232425
  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. validates :email, email: true
  9. 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') }
  10. scope :recent, -> { order('id desc') }
  11. scope :admins, -> { where(admin: true) }
  12. has_settings do |s|
  13. s.key :notification_emails, defaults: { follow: false, reblog: false, favourite: false, mention: false, follow_request: true }
  14. s.key :interactions, defaults: { must_be_follower: false, must_be_following: false }
  15. end
  16. def send_devise_notification(notification, *args)
  17. devise_mailer.send(notification, self, *args).deliver_later
  18. end
  19. end