X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/234afb3f4277130f233fb3b01fcd56cc1c2d1678..7d46f5db6004f1e0555150c3f97c82185d76b837:/app/controllers/issues_controller.rb diff --git a/app/controllers/issues_controller.rb b/app/controllers/issues_controller.rb index 61f466f62..594038939 100644 --- a/app/controllers/issues_controller.rb +++ b/app/controllers/issues_controller.rb @@ -47,9 +47,10 @@ class IssuesController < ApplicationController @new_comment = IssueComment.new(:issue => @issue) end - # Status Transistions + # Status Transitions def resolve if @issue.resolve + @issue.updated_by = current_user.id @issue.save! redirect_to @issue, :notice => t(".resolved") else @@ -80,6 +81,8 @@ class IssuesController < ApplicationController private def find_issue - @issue = Issue.find(params[:id]) + @issue = Issue.visible_to(current_user).find(params[:id]) + rescue ActiveRecord::RecordNotFound + redirect_to :controller => "errors", :action => "not_found" end end