mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 11:35:13 +00:00
7 lines
221 B
Ruby
7 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
|