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

20 lines
687 B
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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
User.where(email: Rails.application.credentials.initial_superuser_email)
.first_or_create! do |new_user|
new_user.account = Account.create!
new_user.password = Rails.application.credentials.initial_superuser_password
new_user.confirmed_at = Time.zone.now
end.account.add_role :superuser
MembershipPool.create! name: 'Все заявления' unless MembershipPool.any?