Quellcode durchsuchen

Use ApplicationController#find_optional_project instead.

git-svn-id: http://svn.redmine.org/redmine/trunk@16722 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.0.0
Jean-Philippe Lang vor 7 Jahren
Ursprung
Commit
339a6212ef
1 geänderte Dateien mit 1 neuen und 9 gelöschten Zeilen
  1. 1
    9
      app/controllers/timelog_controller.rb

+ 1
- 9
app/controllers/timelog_controller.rb Datei anzeigen

@@ -25,7 +25,6 @@ class TimelogController < ApplicationController

before_action :find_optional_issue, :only => [:new, :create]
before_action :find_optional_project, :only => [:index, :report]
before_action :authorize_global, :only => [:new, :create, :index, :report]

accept_rss_auth :index
accept_api_auth :index, :show, :create, :update, :destroy
@@ -261,19 +260,12 @@ private
if params[:issue_id].present?
@issue = Issue.find(params[:issue_id])
@project = @issue.project
authorize
else
find_optional_project
end
end

def find_optional_project
if params[:project_id].present?
@project = Project.find(params[:project_id])
end
rescue ActiveRecord::RecordNotFound
render_404
end

# Returns the TimeEntry scope for index and report actions
def time_entry_scope(options={})
@query.results_scope(options)

Laden…
Abbrechen
Speichern