2016-08-17 17:56:23 +02:00
|
|
|
class User < ApplicationRecord
|
2016-03-05 13:12:24 +01:00
|
|
|
devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable
|
|
|
|
|
2016-02-22 16:00:20 +01:00
|
|
|
belongs_to :account, inverse_of: :user
|
2016-03-05 22:43:05 +01:00
|
|
|
accepts_nested_attributes_for :account
|
2016-03-05 13:12:24 +01:00
|
|
|
|
2016-02-22 18:10:30 +01:00
|
|
|
validates :account, presence: true
|
2016-03-14 17:49:13 +01:00
|
|
|
|
|
|
|
has_many :oauth_applications, class_name: 'Doorkeeper::Application', as: :owner
|
2016-03-25 14:12:24 +01:00
|
|
|
|
|
|
|
def admin?
|
|
|
|
self.admin
|
|
|
|
end
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|