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

crm_controller.rb « groups « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40661b09be632ac86b67085d4044dc2c7a758573 (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
# frozen_string_literal: true

class Groups::CrmController < Groups::ApplicationController
  feature_category :team_planning

  before_action :authorize_read_crm_contact!, only: [:contacts]
  before_action :authorize_read_crm_organization!, only: [:organizations]

  def contacts
    respond_to do |format|
      format.html
    end
  end

  def organizations
    respond_to do |format|
      format.html
    end
  end

  private

  def authorize_read_crm_contact!
    render_404 unless can?(current_user, :read_crm_contact, group)
  end

  def authorize_read_crm_organization!
    render_404 unless can?(current_user, :read_crm_organization, group)
  end
end