0
0
Fork 0

Removing grape and adding devise

This commit is contained in:
Eugen Rochko 2016-03-05 13:12:24 +01:00
parent 3b4e04dc32
commit 7e93da3f8d
9 changed files with 400 additions and 58 deletions

View file

@ -1,4 +1,7 @@
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable
belongs_to :account, inverse_of: :user
validates :account, presence: true
end