From cab6768b4bf831f81c9a42e3b83f0794e08c0fee Mon Sep 17 00:00:00 2001 From: r888888888 Date: Sun, 12 Jun 2016 17:34:13 -0700 Subject: [PATCH] fix bug with approving bulk update requests --- app/controllers/bulk_update_requests_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/bulk_update_requests_controller.rb b/app/controllers/bulk_update_requests_controller.rb index 0dde5a199..f46e66b92 100644 --- a/app/controllers/bulk_update_requests_controller.rb +++ b/app/controllers/bulk_update_requests_controller.rb @@ -28,7 +28,7 @@ class BulkUpdateRequestsController < ApplicationController end def approve - @bulk_update_request.approve!(CurrentUse.user.id) + @bulk_update_request.approve!(CurrentUser.user.id) flash[:notice] = "Bulk update request approved" respond_with(@bulk_update_request, :location => bulk_update_requests_path) end