mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
in the pool, adding a throttle of 60rpm per IP, adding mini profiler, adding admin status to users
14 lines
380 B
Ruby
14 lines
380 B
Ruby
class User < ActiveRecord::Base
|
|
devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable
|
|
|
|
belongs_to :account, inverse_of: :user
|
|
accepts_nested_attributes_for :account
|
|
|
|
validates :account, presence: true
|
|
|
|
has_many :oauth_applications, class_name: 'Doorkeeper::Application', as: :owner
|
|
|
|
def admin?
|
|
self.admin
|
|
end
|
|
end
|