flash alert to flash error

This commit is contained in:
Stella 2014-11-30 15:41:47 +02:00
parent 65c0cd7a73
commit d44e1f7c24
9 changed files with 23 additions and 23 deletions

View file

@ -34,7 +34,7 @@ class ConferenceRegistrationsController < ApplicationController
notice: 'You are now registered and will be receiving E-Mail notifications.'
end
else
flash[:alert] = "An error prohibited the registration for #{@conference.title}: "\
flash[:error] = "An error prohibited the registration for #{@conference.title}: "\
"#{@registration.errors.full_messages.join('. ')}."
render :new
end
@ -45,7 +45,7 @@ class ConferenceRegistrationsController < ApplicationController
redirect_to conference_conference_registrations_path(@conference.short_title),
notice: 'Registration was successfully updated.'
else
flash[:alert] = "An error prohibited the registration for #{@conference.title}: "\
flash[:error] = "An error prohibited the registration for #{@conference.title}: "\
"#{@registration.errors.full_messages.join('. ')}."
render :edit
end
@ -57,7 +57,7 @@ class ConferenceRegistrationsController < ApplicationController
notice: "You are not registered for #{@conference.title} anymore!"
else
redirect_to root_path,
alert: "An error prohibited deleting the registration for #{@conference.title}: "\
error: "An error prohibited deleting the registration for #{@conference.title}: "\
"#{@registration.errors.full_messages.join('. ')}."
end
end