mirror of
https://github.com/funamitech/mastodon
synced 2024-11-28 14:58:38 +09:00
8 lines
221 B
Ruby
8 lines
221 B
Ruby
class User < ActiveRecord::Base
|
|
devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable
|
|
|
|
belongs_to :account, inverse_of: :user
|
|
|
|
validates :account, presence: true
|
|
end
|