Merge pull request #3375 from evazion/feat-3372

Fix #3374: List approver in BUR approval messages
This commit is contained in:
Albert Yi
2017-11-16 11:02:18 -08:00
committed by GitHub
13 changed files with 78 additions and 45 deletions

View File

@@ -38,7 +38,7 @@ class BulkUpdateRequestsController < ApplicationController
def destroy
if @bulk_update_request.editable?(CurrentUser.user)
@bulk_update_request.reject!
@bulk_update_request.reject!(CurrentUser.user)
flash[:notice] = "Bulk update request rejected"
respond_with(@bulk_update_request, :location => bulk_update_requests_path)
else