0
0
instrumental/app/models/user.rb

15 lines
379 B
Ruby
Raw Normal View History

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