Skip to content
Snippets Groups Projects
Unverified Commit 8282e65d authored by Felix Eckhofer's avatar Felix Eckhofer :man_dancing:
Browse files

Only add dummy users in development

parent ae7ea8a4
No related branches found
No related tags found
No related merge requests found
...@@ -72,11 +72,13 @@ Conference.find_or_create_by!(slug: "38c3-more").tap do |c| ...@@ -72,11 +72,13 @@ Conference.find_or_create_by!(slug: "38c3-more").tap do |c|
c.save! c.save!
end end
%w[coverage fog comedy adjust forge fail vigorous promise chemistry conception meat storage certain warm develop civilian cousin injection hammer health appetite conventional good snake grant suspect atmosphere linen wrong deal calf sea management silence watch nuance loan quit convert failure bracket slice sweat treaty plot still chimpanzee assume functional marsh dream mail state dorm kid formation secular agile beach guide salesperson merit goalkeeper incongruous cart pig joystick regulation apparatus myth patent glue behead flu departure spectrum parking indication delay hesitate viable lay treat cooperative sensation auction sphere stain tap pass].each do |username| if Rails.env.development?
User.find_or_create_by(name: username).tap do |u| %w[coverage fog comedy adjust forge fail vigorous promise chemistry conception meat storage certain warm develop civilian cousin injection hammer health appetite conventional good snake grant suspect atmosphere linen wrong deal calf sea management silence watch nuance loan quit convert failure bracket slice sweat treaty plot still chimpanzee assume functional marsh dream mail state dorm kid formation secular agile beach guide salesperson merit goalkeeper incongruous cart pig joystick regulation apparatus myth patent glue behead flu departure spectrum parking indication delay hesitate viable lay treat cooperative sensation auction sphere stain tap pass].each do |username|
u.email = "c3lingo+#{username}@x.moeffju.net" User.find_or_create_by(name: username).tap do |u|
u.invitation_token = "gargamel" u.email = "c3lingo+#{username}@x.moeffju.net"
u.save! u.invitation_token = "gargamel"
u.save!
end
end end
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment