mastodon/app/models/user.rb

15 lines
379 B
Ruby
Raw Normal View History

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
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
def admin?
self.admin
end
2016-02-22 16:00:20 +01:00
end