Browse Source

Refactor: Pull up several #find_project methods to ApplicationController

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3370 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.0.0
Eric Davis 14 years ago
parent
commit
e5d300af0a

+ 7
- 0
app/controllers/application_controller.rb View File

@@ -159,6 +159,13 @@ class ApplicationController < ActionController::Base
def authorize_global(ctrl = params[:controller], action = params[:action], global = true)
authorize(ctrl, action, global)
end

# Find project of id params[:id]
def find_project
@project = Project.find(params[:id])
rescue ActiveRecord::RecordNotFound
render_404
end
# make sure that the user is a member of the project (or admin) if project is private
# used as a before_filter for actions that do not require any particular permission on the project

+ 0
- 6
app/controllers/members_controller.rb View File

@@ -74,12 +74,6 @@ class MembersController < ApplicationController
end

private
def find_project
@project = Project.find(params[:id])
rescue ActiveRecord::RecordNotFound
render_404
end
def find_member
@member = Member.find(params[:id])
@project = @member.project

+ 0
- 9
app/controllers/projects_controller.rb View File

@@ -413,15 +413,6 @@ class ProjectsController < ApplicationController
end
private
# Find project of id params[:id]
# if not found, redirect to project list
# Used as a before_filter
def find_project
@project = Project.find(params[:id])
rescue ActiveRecord::RecordNotFound
render_404
end
def find_optional_project
return true unless params[:id]
@project = Project.find(params[:id])

+ 0
- 7
app/controllers/reports_controller.rb View File

@@ -86,13 +86,6 @@ class ReportsController < ApplicationController
end
private
# Find project of id params[:id]
def find_project
@project = Project.find(params[:id])
rescue ActiveRecord::RecordNotFound
render_404
end

def issues_by_tracker
@issues_by_tracker ||= Issue.by_tracker(@project)
end

+ 0
- 6
app/controllers/repositories_controller.rb View File

@@ -190,12 +190,6 @@ class RepositoriesController < ApplicationController
end
private
def find_project
@project = Project.find(params[:id])
rescue ActiveRecord::RecordNotFound
render_404
end
def find_repository
@project = Project.find(params[:id])
@repository = @project.repository

+ 0
- 7
app/controllers/wikis_controller.rb View File

@@ -34,11 +34,4 @@ class WikisController < ApplicationController
redirect_to :controller => 'projects', :action => 'settings', :id => @project, :tab => 'wiki'
end
end
private
def find_project
@project = Project.find(params[:id])
rescue ActiveRecord::RecordNotFound
render_404
end
end

Loading…
Cancel
Save