debian-mirror-gitlab/app/controllers/groups/boards_controller.rb

33 lines
633 B
Ruby
Raw Normal View History

2018-03-27 19:54:05 +05:30
class Groups::BoardsController < Groups::ApplicationController
include BoardsResponses
before_action :assign_endpoint_vars
2018-11-08 19:23:39 +05:30
before_action :boards, only: :index
2018-03-27 19:54:05 +05:30
def index
respond_with_boards
end
def show
2018-11-08 19:23:39 +05:30
@board = boards.find(params[:id])
2018-03-27 19:54:05 +05:30
respond_with_board
end
2018-11-08 19:23:39 +05:30
private
def boards
@boards ||= Boards::ListService.new(group, current_user).execute
end
2018-03-27 19:54:05 +05:30
def assign_endpoint_vars
@boards_endpoint = group_boards_url(group)
@namespace_path = group.to_param
@labels_endpoint = group_labels_url(group)
end
def serialize_as_json(resource)
resource.as_json(only: [:id])
end
end