debian-mirror-gitlab/app/controllers/projects/boards_controller.rb
2016-09-13 17:45:13 +05:30

16 lines
346 B
Ruby

class Projects::BoardsController < Projects::ApplicationController
respond_to :html
before_action :authorize_read_board!, only: [:show]
def show
::Boards::CreateService.new(project, current_user).execute
end
private
def authorize_read_board!
return access_denied! unless can?(current_user, :read_board, project)
end
end