gitlab-org--gitlab-foss/app/controllers/projects/boards_controller.rb

16 lines
346 B
Ruby
Raw Normal View History

2016-08-01 12:09:41 -04:00
class Projects::BoardsController < Projects::ApplicationController
respond_to :html
before_action :authorize_read_board!, only: [:show]
2016-08-01 12:09:41 -04:00
def show
::Boards::CreateService.new(project, current_user).execute
2016-08-01 12:09:41 -04:00
end
private
def authorize_read_board!
return access_denied! unless can?(current_user, :read_board, project)
end
2016-08-01 12:09:41 -04:00
end