Welcome to mirror list, hosted at ThFree Co, Russian Federation.

boards_controller.rb « groups « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c2016f03262250a9dec79d57a48a12ac556fdff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class Groups::BoardsController < Groups::ApplicationController
  include BoardsResponses

  before_action :assign_endpoint_vars

  def index
    @boards = Boards::ListService.new(group, current_user).execute

    respond_with_boards
  end

  def show
    @board = group.boards.find(params[:id])

    respond_with_board
  end

  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