mastodon/app/models/user.rb

15 lines
380 B
Ruby
Raw Normal View History

2016-02-22 09:00:20 -06:00
class User < ActiveRecord::Base
2016-03-05 06:12:24 -06:00
devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable
2016-02-22 09:00:20 -06:00
belongs_to :account, inverse_of: :user
accepts_nested_attributes_for :account
2016-03-05 06:12:24 -06:00
2016-02-22 11:10:30 -06:00
validates :account, presence: true
2016-03-14 11:49:13 -05:00
has_many :oauth_applications, class_name: 'Doorkeeper::Application', as: :owner
def admin?
self.admin
end
2016-02-22 09:00:20 -06:00
end