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/modules/grids/app/controllers/grids/base_in_project_controller.rb

10 lines
211 B

module ::Grids
class BaseInProjectController < ::ApplicationController
before_action :find_project_by_project_id
before_action :authorize
def show
render layout: 'angular'
end
end
end