Skip to content

Commit ea2acb1

Browse files
authored
Load enable_starttls_auto as a boolean (#2049)
* Correctly load enable_starttls_auto * flash -> flash.now when rendering directly * flash.now when admin_created
1 parent 306ebe5 commit ea2acb1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

app/controllers/application_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def authorize_user_for_course
175175

176176
when :admin_created
177177
@cud = cud
178-
flash[:notice] = "Administrator user added to course"
178+
flash.now[:notice] = "Administrator user added to course"
179179

180180
when :admin_creation_error
181181
flash[:error] = "Error adding administrator #{current_user.email} to course"

app/controllers/courses_controller.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def create
126126
rescue StandardError => e
127127
# roll back course creation
128128
@newCourse.destroy
129-
flash[:error] = "Can't create instructor for the course: #{e}"
129+
flash.now[:error] = "Can't create instructor for the course: #{e}"
130130
render(action: "new") && return
131131
end
132132

@@ -143,7 +143,7 @@ def create
143143
# roll back course creation and instruction creation
144144
new_cud.destroy
145145
@newCourse.destroy
146-
flash[:error] = "Can't load course config for #{@newCourse.name}."
146+
flash.now[:error] = "Can't load course config for #{@newCourse.name}."
147147
render(action: "new") && return
148148
else
149149
flash[:success] = "New Course #{@newCourse.name} successfully created!"
@@ -152,12 +152,12 @@ def create
152152
else
153153
# roll back course creation
154154
@newCourse.destroy
155-
flash[:error] = "Can't create instructor for the course."
155+
flash.now[:error] = "Can't create instructor for the course."
156156
render(action: "new") && return
157157
end
158158

159159
else
160-
flash[:error] = "Course creation failed. Check all fields"
160+
flash.now[:error] = "Course creation failed. Check all fields"
161161
render(action: "new") && return
162162
end
163163
end

config/environments/production.rb.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Autolab3::Application.configure do
8888
config.action_mailer.smtp_settings = {
8989
address: ENV.fetch('SMTP_SETTINGS_ADDRESS','smtp.example.com'),
9090
port: ENV.fetch('SMTP_SETTINGS_PORT',25),
91-
enable_starttls_auto: ENV.fetch('SMTP_SETTINGS_ENABLE_STARTTLS_AUTO',true),
91+
enable_starttls_auto: ENV.fetch('SMTP_SETTINGS_ENABLE_STARTTLS_AUTO','true') == 'true',
9292
authentication: ENV.fetch('SMTP_SETTINGS_AUTHENTICATION','login'),
9393
user_name: ENV.fetch('SMTP_SETTINGS_USER_NAME','example'),
9494
password: ENV.fetch('SMTP_SETTINGS_PASSWORD','example'),

0 commit comments

Comments
 (0)