From 46e379e6cb167005483d4b41a84815df8aa7cce0 Mon Sep 17 00:00:00 2001 From: ArtOfCode- Date: Fri, 28 Aug 2020 20:03:46 +0100 Subject: [PATCH] -_- --- docker/create_admin_and_community.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/create_admin_and_community.rb b/docker/create_admin_and_community.rb index cf0a3f8c8..13690ef07 100644 --- a/docker/create_admin_and_community.rb +++ b/docker/create_admin_and_community.rb @@ -7,6 +7,7 @@ password = ENV['COMMUNITY_ADMIN_PASSWORD'] || 'password' email = ENV['COMMUNITY_ADMIN_EMAIL'] || 'codadict@noreply.com' -User.create(username: username, password: password, email: email, is_global_admin: true, is_global_moderator: true, staff: true) +User.create(username: username, password: password, email: email, is_global_admin: true, is_global_moderator: true, + staff: true) # You'll need to manually set confirmation for this user # $ docker exec qpixel_uwsgi_1 rails runner "User.second.update(confirmed_at: DateTime.now)"