diff --git a/app/controllers/admin/registrations_controller.rb b/app/controllers/admin/registrations_controller.rb index 22e4e10a..ce5f644f 100644 --- a/app/controllers/admin/registrations_controller.rb +++ b/app/controllers/admin/registrations_controller.rb @@ -19,7 +19,8 @@ class Admin::RegistrationsController < ApplicationController end redirect_to admin_conference_registrations_path(@conference.short_title) - flash[:notice] = "Updated '#{params[:view_field]}' => #{@registration.attended} for #{(Person.where("id = ?", @registration.person_id).first).email}" + flash[:notice] = "Updated '#{params[:view_field]}' => #{@registration.attended} for + #{(Person.where("id = ?", @registration.person_id).first).email}" end def edit @@ -42,7 +43,8 @@ class Admin::RegistrationsController < ApplicationController redirect_to(admin_conference_registrations_path(@conference.short_title)) rescue Exception => e Rails.logger.debug e.backtrace.join("\n") - redirect_to(admin_conference_registrations_path(@conference.short_title), :alert => 'Failed to update registration:' + e.message) + redirect_to(admin_conference_registrations_path(@conference.short_title), + :alert => 'Failed to update registration:' + e.message) return end end @@ -120,11 +122,13 @@ class Admin::RegistrationsController < ApplicationController flash[:notice] = "Deleted registration for #{person.public_name} #{person.email}" rescue Exception => e Rails.logger.debug e.backtrace.join("\n") - redirect_to(admin_conference_registrations_path(@conference.short_title), :alert => 'Failed to delete registration:' + e.message) + redirect_to(admin_conference_registrations_path(@conference.short_title), + :alert => 'Failed to delete registration:' + e.message) return end else - redirect_to(admin_conference_registrations_path(@conference.short_title), :alert => 'You must be an admin to delete a registration.') + redirect_to(admin_conference_registrations_path(@conference.short_title), + :alert => 'You must be an admin to delete a registration.') end end end \ No newline at end of file diff --git a/config/routes.rb b/config/routes.rb index 1c10b0b1..1864cb64 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -16,8 +16,8 @@ Osem::Application.routes.draw do get "/volunteers_list" => "volunteers#show" get "/volunteers" => "volunteers#index", :as => "volunteers_info" patch "/volunteers" => "volunteers#update", :as => "volunteers_update" - - patch "/registrations/change_field" => "registrations#change_field" + + patch '/registrations/change_field' => 'registrations#change_field' resources :registrations resources :difficulty_levels, only: [:show, :update, :index]