summaryrefslogtreecommitdiff
path: root/app/controllers/projects/group_links_controller.rb
blob: 08eebfa0e4b2d621ff4d387a0e407500b66edd36 (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
35
36
37
38
39
40
41
42
# frozen_string_literal: true

class Projects::GroupLinksController < Projects::ApplicationController
  layout 'project_settings'
  before_action :authorize_admin_project!
  before_action :authorize_admin_project_member!, only: [:update]

  feature_category :subgroups

  def update
    group_link = @project.project_group_links.find(params[:id])
    Projects::GroupLinks::UpdateService.new(group_link, current_user).execute(group_link_params)

    if group_link.expires?
      render json: {
        expires_in: helpers.time_ago_with_tooltip(group_link.expires_at),
        expires_soon: group_link.expires_soon?
      }
    else
      render json: {}
    end
  end

  def destroy
    group_link = project.project_group_links.find(params[:id])

    ::Projects::GroupLinks::DestroyService.new(project, current_user).execute(group_link)

    respond_to do |format|
      format.html do
        redirect_to project_project_members_path(project), status: :found
      end
      format.js { head :ok }
    end
  end

  protected

  def group_link_params
    params.require(:group_link).permit(:group_access, :expires_at)
  end
end