OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/controllers/rb_application_controller.rb

34 lines
924 B

# Base class of all controllers in Redmine Backlogs
class RbApplicationController < ApplicationController
unloadable
helper :rb_common
before_filter :load_project, :authorize, :check_if_plugin_is_configured
private
# Loads the project to be used by the authorize filter to
# determine if User.current has permission to invoke the method in question.
def load_project
@project = Project.find(params[:project_id]) if params[:project_id]
if params[:sprint_id]
load_sprint
@project = @sprint.project unless @project.present?
end
end
def check_if_plugin_is_configured
settings = Setting.plugin_redmine_backlogs
if settings[:story_trackers].blank? || settings[:task_tracker].blank?
respond_to do |format|
format.html { render :file => "shared/not_configured" }
end
end
end
def load_sprint
@sprint = Sprint.find(params[:sprint_id])
end
end