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

protected_tags_controller.rb « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c61ddf145e6fd5bb253160cb3cf048c865a31006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Projects::ProtectedTagsController < Projects::ProtectedRefsController
  protected

  def project_refs
    @project.repository.tags
  end

  def create_service_class
    ::ProtectedTags::CreateService
  end

  def update_service_class
    ::ProtectedTags::UpdateService
  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, :id])
  end
end