mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
12 lines
225 B
Ruby
12 lines
225 B
Ruby
include UsersGenerator
|
|
|
|
# Create admin user
|
|
admin_password = 'inHisHouseAtRlyehDeadCthulhuWaitsDreaming'
|
|
create_user(
|
|
'Admin',
|
|
'admin@scinote.net',
|
|
admin_password,
|
|
true,
|
|
Constants::DEFAULT_PRIVATE_TEAM_NAME,
|
|
[]
|
|
)
|