1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2026-01-27 02:28:50 +01:00

Add Admin class

This commit is contained in:
2015-01-31 12:19:54 +01:00
parent b9bbe6d57b
commit 0677e19b93
7 changed files with 92 additions and 5 deletions

6
app/models/admin.rb Normal file
View File

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