This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-02-22 16:00:20 +01:00
|
|
|
class User < ActiveRecord::Base
|
|
|
|
belongs_to :account, inverse_of: :user
|
2016-02-22 18:10:30 +01:00
|
|
|
|
|
|
|
validates :account, presence: true
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|