This commit is contained in:
Tanguy PATTE 2015-09-23 10:02:01 +02:00
parent f7fb0f99bf
commit 78e86f00ea
33 changed files with 624 additions and 61 deletions

6
app/models/user.rb Normal file
View file

@ -0,0 +1,6 @@
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
end