c74b5c21d7
* Feature: Introduce Super Admins - added new devise model for super user - added administrate gem - sample dashboards for users and accounts Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
6 lines
132 B
Ruby
6 lines
132 B
Ruby
FactoryBot.define do
|
|
factory :super_admin do
|
|
email { "admin@#{SecureRandom.uuid}.com" }
|
|
password { 'password' }
|
|
end
|
|
end
|