From 8282e65d89ca8983de5fc163a26f755b9b98a878 Mon Sep 17 00:00:00 2001
From: Felix Eckhofer <felix@eckhofer.com>
Date: Sun, 22 Dec 2024 15:53:04 +0100
Subject: [PATCH] Only add dummy users in development

---
 db/seeds.rb | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/db/seeds.rb b/db/seeds.rb
index 027a107..329fa7b 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -72,11 +72,13 @@ Conference.find_or_create_by!(slug: "38c3-more").tap do |c|
   c.save!
 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|
-  User.find_or_create_by(name: username).tap do |u|
-    u.email = "c3lingo+#{username}@x.moeffju.net"
-    u.invitation_token = "gargamel"
-    u.save!
+if Rails.env.development?
+  %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|
+    User.find_or_create_by(name: username).tap do |u|
+      u.email = "c3lingo+#{username}@x.moeffju.net"
+      u.invitation_token = "gargamel"
+      u.save!
+    end
   end
 end
 
-- 
GitLab