diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-03-03 23:45:48 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-03-04 00:00:48 +0100 |
commit | 6b81d100306259cd17b38d3f0f9dec0f0fb5b5d9 (patch) | |
tree | a6d40da1644804061eaeacdfd748d027aac2c41b /app/models | |
parent | f5457cc3d2be79525d339dd5a5c046de6d0acf9d (diff) |
Add digest e-mails
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/setting.rb | 1 | ||||
-rw-r--r-- | app/models/user.rb | 7 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/models/setting.rb b/app/models/setting.rb index 3796253d4..31e1ee198 100644 --- a/app/models/setting.rb +++ b/app/models/setting.rb @@ -2,7 +2,6 @@ class Setting < RailsSettings::Base source Rails.root.join('config/settings.yml') - namespace Rails.env def to_param var diff --git a/app/models/user.rb b/app/models/user.rb index 08aac2679..bf2916d90 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -14,9 +14,10 @@ class User < ApplicationRecord validates :locale, inclusion: I18n.available_locales.map(&:to_s), unless: 'locale.nil?' validates :email, email: true - 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') } - scope :recent, -> { order('id desc') } - scope :admins, -> { where(admin: true) } + 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') } + scope :recent, -> { order('id desc') } + scope :admins, -> { where(admin: true) } + scope :confirmed, -> { where.not(confirmed_at: nil) } def send_devise_notification(notification, *args) devise_mailer.send(notification, self, *args).deliver_later |