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: 8d259b4052e231fbb75aa0b477421d83d7b0ec58 (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
28
29
30
31
32
33
34
# frozen_string_literal: true

class Groups::BoardsController < Groups::ApplicationController
  include BoardsResponses

  before_action :assign_endpoint_vars
  before_action :boards, only: :index

  def index
    respond_with_boards
  end

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

    respond_with_board
  end

  private

  def boards
    @boards ||= Boards::ListService.new(group, current_user).execute
  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