diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-25 14:12:24 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-25 14:12:24 +0100 |
commit | e24bfbde1acbef73cd3c58753a572da2bcb59200 (patch) | |
tree | 7d05e3b3ad634f63d1e94de6ebfd16f64cfb9789 /app/models | |
parent | 8eeec389c11298ad1be163dd65c5ae79e06867ca (diff) |
Fixing FanOutOnWriteService, fixing Sidekiq not having enough DB connections
in the pool, adding a throttle of 60rpm per IP, adding mini profiler, adding admin status to users
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/user.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index b17eabcc4..a80efb50d 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -7,4 +7,8 @@ class User < ActiveRecord::Base validates :account, presence: true has_many :oauth_applications, class_name: 'Doorkeeper::Application', as: :owner + + def admin? + self.admin + end end |