scinote-web/db/seeds.rb
ajugo ad4f52d912
Add Label template list screen - view mode [SCI-7018] (#4292)
* 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]
2022-07-27 10:10:32 +02:00

41 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