The code powering m.abunchtell.com https://m.abunchtell.com
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
942 B

  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: true, reblog: true, favourite: true, mention: true }
  13. end
  14. def send_devise_notification(notification, *args)
  15. devise_mailer.send(notification, self, *args).deliver_later
  16. end
  17. end