1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/db/seeds.rb

20 lines
608 B
Ruby

# frozen_string_literal: true
country_states_filename = Rails.root.join 'config', 'country_states.txt'
country_state_names = File.readlines(country_states_filename).map(&:strip)
country_state_names.each do |name|
next if CountryState.where(name: name).exists?
CountryState.create! name: name
end
Rails.application.settings(:superuser).deep_symbolize_keys.tap do |config|
User.where(email: config[:email]).first_or_create! do |new_user|
new_user.account = Account.create!
new_user.password = config[:password]
new_user.confirmed_at = Time.zone.now
end.account.add_role :superuser
end