mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 05:54:27 +00:00
9 lines
262 B
Ruby
9 lines
262 B
Ruby
class User < ActiveRecord::Base
|
|
devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable
|
|
|
|
belongs_to :account, inverse_of: :user
|
|
accepts_nested_attributes_for :account
|
|
|
|
validates :account, presence: true
|
|
end
|