mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-10 16:22:34 +01:00
4 lines
114 B
Ruby
4 lines
114 B
Ruby
class User < ActiveRecord::Base
|
|
belongs_to :account, inverse_of: :user
|
|
validates :account, presence: true
|
|
end
|