mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 08:46:41 +01:00
7 lines
253 B
Ruby
7 lines
253 B
Ruby
class Admin < ApplicationRecord
|
|
# Include default devise modules. Others available are:
|
|
# :confirmable, :lockable, :timeoutable and :omniauthable
|
|
devise :database_authenticatable,
|
|
:recoverable, :rememberable, :trackable, :validatable
|
|
end
|