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.

18 lines
729 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. 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') }
  8. scope :recent, -> { order('id desc') }
  9. scope :admins, -> { where(admin: true) }
  10. has_settings do |s|
  11. s.key :notification_emails, defaults: { follow: true, reblog: true, favourite: true, mention: true }
  12. end
  13. end