1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-24 23:26:22 +09:00
mastodon/app/models/user.rb

6 lines
115 B
Ruby
Raw Normal View History

2016-02-23 00:00:20 +09:00
class User < ActiveRecord::Base
belongs_to :account, inverse_of: :user
2016-02-23 02:10:30 +09:00
validates :account, presence: true
2016-02-23 00:00:20 +09:00
end