Skip to content

Commit

Permalink
interpolate strings
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwoldatwork committed Oct 24, 2024
1 parent a01b6c0 commit b158634
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def production_suitable_seeds
digital_analytics_path: 'general-services-administration',
mission_statement: 'Declaring the purpose of an organization and how it serves customers'
})
puts 'Created Organization: #{@gsa.name}'
puts "Created Organization: #{@gsa.name}"
end

production_suitable_seeds
Expand All @@ -33,7 +33,7 @@ def production_suitable_seeds
url: 'https://lvh.me',
abbreviation: 'DEV'
})
puts 'Created Default Organization: #{developer_organization.name}'
puts "Created Default Organization: #{developer_organization.name}"

developer_user = User.new({
organization: developer_organization,
Expand All @@ -43,7 +43,7 @@ def production_suitable_seeds
current_sign_in_at: Time.now,
})
developer_user.save!
puts 'Created Developer User: #{developer_user.email}'
puts "Created Developer User: #{developer_user.email}"
end

example_gov = Organization.create!({
Expand All @@ -52,7 +52,7 @@ def production_suitable_seeds
url: 'https://example.gov',
abbreviation: 'EX'
})
puts 'Created Default Organization: #{example_gov.name}'
puts "Created Default Organization: #{example_gov.name}"

admin_user = User.new({
organization: example_gov,
Expand All @@ -63,7 +63,7 @@ def production_suitable_seeds
current_sign_in_at: Time.now,
})
admin_user.save!
puts 'Created Admin User: #{admin_user.email}'
puts "Created Admin User: #{admin_user.email}"

organizational_admin_user = User.new({
organization: example_gov,
Expand All @@ -73,7 +73,7 @@ def production_suitable_seeds
current_sign_in_at: Time.now,
})
organizational_admin_user.save!
puts 'Created Organizational Admin User: #{organizational_admin_user.email}'
puts "Created Organizational Admin User: #{organizational_admin_user.email}"

digital_gov = Organization.create!({
name: 'Digital.gov',
Expand All @@ -82,7 +82,7 @@ def production_suitable_seeds
abbreviation: 'DIGITAL',
parent_id: @gsa.id
})
puts 'Creating additional Organization: #{digital_gov.name}'
puts "Creating additional Organization: #{digital_gov.name}"

org_2 = Organization.create!({
name: 'Farmers.gov',
Expand All @@ -105,7 +105,7 @@ def production_suitable_seeds
current_sign_in_at: Time.now,
})
webmaster.save!
puts 'Created #{webmaster.email}'
puts "Created #{webmaster.email}"

touchpoint_manager = User.new({
email: '[email protected]',
Expand All @@ -114,7 +114,7 @@ def production_suitable_seeds
current_sign_in_at: Time.now,
})
touchpoint_manager.save!
puts 'Created #{touchpoint_manager.email}'
puts "Created #{touchpoint_manager.email}"

submission_viewer = User.new({
email: '[email protected]',
Expand All @@ -123,7 +123,7 @@ def production_suitable_seeds
current_sign_in_at: Time.now - 100.days,
})
submission_viewer.save!
puts 'Created #{submission_viewer.email}'
puts "Created #{submission_viewer.email}"


#
Expand Down Expand Up @@ -553,7 +553,7 @@ def production_suitable_seeds
current_sign_in_at: Time.now,
})
digital_gov_user.save!
puts 'Created Test User in Secondary Organization: #{digital_gov_user.email}'
puts "Created Test User in Secondary Organization: #{digital_gov_user.email}"

## Generate admin
admin_emails = ENV.fetch('TOUCHPOINTS_ADMIN_EMAILS').split(',')
Expand Down

0 comments on commit b158634

Please sign in to comment.