mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-28 03:06:28 +08:00
12 lines
212 B
Ruby
12 lines
212 B
Ruby
|
include UsersGenerator
|
||
|
|
||
|
# Create admin user
|
||
|
admin_password = "inHisHouseAtRlyehDeadCthulhuWaitsDreaming"
|
||
|
create_user(
|
||
|
"Admin",
|
||
|
"admin@scinote.net",
|
||
|
admin_password,
|
||
|
true,
|
||
|
DEFAULT_PRIVATE_ORG_NAME,
|
||
|
[]
|
||
|
)
|