summaryrefslogtreecommitdiff
path: root/app/controllers/projects/protected_tags_controller.rb
blob: 01cedba95ac5e92b0becffbc6c8f27931d7e2e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class Projects::ProtectedTagsController < Projects::ProtectedRefsController
  protected

  def project_refs
    @project.repository.tags
  end

  def service_namespace
    ::ProtectedTags
  end

  def load_protected_ref
    @protected_ref = @project.protected_tags.find(params[:id])
  end

  def protected_ref_params
    params.require(:protected_tag).permit(:name, create_access_levels_attributes: access_level_attributes)
  end
end