We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 783352c commit 78b8632Copy full SHA for 78b8632
db/seeds.rb
@@ -31,10 +31,11 @@
31
puts "Created main users: #{users.map(&:first_name).join(', ')}"
32
33
more_users = %w[Joshy Nadieschka Hansibaby Lisita Juanfairy Nomnom Santimaus Florenke Mäx].map do |name|
34
+ email_name = name.gsub('ä', 'ae').gsub('ö', 'oe').gsub('ü', 'ue')
35
User.create!(
36
first_name: name,
37
last_name: 'Testy',
- email: "#{name.downcase}@test.com",
38
+ email: "#{email_name.downcase}@test.com",
39
emoji: EMOJIS.sample,
40
password: 'G1ggl3!Fluff',
41
confirmed_at: Time.current
0 commit comments