demarches-normaliennes/db/seeds.rb

20 lines
639 B
Ruby
Raw Normal View History

2015-08-10 11:05:06 +02:00
# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
2015-08-10 11:05:06 +02:00
#
# Create an initial user who can use all roles
2015-08-10 11:05:06 +02:00
#
default_user = "test@exemple.fr"
2018-09-26 17:51:06 +02:00
default_password = "this is a very complicated password !"
puts "Create test user '#{default_user}'"
Administration.create!(email: default_user, password: default_password)
user = User.create!(
2019-08-14 15:20:08 +02:00
email: default_user,
password: default_password,
confirmed_at: Time.zone.now
2019-08-14 15:20:08 +02:00
)
user.create_instructeur!
user.create_administrateur!(email: user.email)