user and recipient and tests

This commit is contained in:
Jared Cosulich 2017-02-25 11:00:27 -05:00
parent d70e30ec93
commit df2ea95ceb
50 changed files with 1412 additions and 37 deletions

2
app/models/recipient.rb Normal file
View file

@ -0,0 +1,2 @@
class Recipient < ApplicationRecord
end

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

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