mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
ad4f52d912
* Initial label template datatable [SCI-7018] * Add new columns to LabelTemplate and update datatable view [SCI-7018] * Fix after rebase [SCI-7018] * Fix migration, disable checkboxes in view mode and fix label template to team level [SCI-7018]
40 lines
987 B
Ruby
40 lines
987 B
Ruby
include UsersGenerator
|
|
|
|
if ActiveRecord::Base.connection.migration_context.needs_migration?
|
|
raise "There are pending migrations. Run 'rails db:migrate' first."
|
|
end
|
|
|
|
MyModuleStatusFlow.ensure_default
|
|
|
|
if User.count.zero?
|
|
if ENV['ADMIN_NAME'].present? &&
|
|
ENV['ADMIN_EMAIL'].present? &&
|
|
ENV['ADMIN_PASSWORD'].present?
|
|
admin_name = ENV['ADMIN_NAME']
|
|
admin_email = ENV['ADMIN_EMAIL']
|
|
admin_password = ENV['ADMIN_PASSWORD']
|
|
else
|
|
admin_name = 'Admin'
|
|
admin_email = 'admin@scinote.net'
|
|
admin_password = 'inHisHouseAtRlyehDeadCthulhuWaitsDreaming'
|
|
end
|
|
|
|
# Create admin user
|
|
create_user(
|
|
admin_name,
|
|
admin_email,
|
|
admin_password,
|
|
true,
|
|
Constants::DEFAULT_PRIVATE_TEAM_NAME,
|
|
[],
|
|
Extends::INITIAL_USER_OPTIONS
|
|
)
|
|
|
|
if LabelTemplate.count.positive?
|
|
LabelTemplate.first.update(
|
|
created_by_id: Team.first.created_by_id,
|
|
last_modified_by_id: Team.first.created_by_id,
|
|
team_id: Team.first.id
|
|
)
|
|
end
|
|
end
|