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

tags_controller.rb « registry « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae72bd03cfba637884fe8046cc718ee5f15bfc42 (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
module Projects
  module Registry
    class TagsController < ::Projects::Registry::ApplicationController
      before_action :authorize_update_container_image!, only: [:destroy]

      def destroy
        if tag.delete
          redirect_to project_container_registry_index_path(@project),
                      status: 302,
                      notice: 'Registry tag has been removed successfully!'
        else
          redirect_to project_container_registry_index_path(@project),
                      status: 302,
                      alert: 'Failed to remove registry tag!'
        end
      end

      private

      def image
        @image ||= project.container_repositories
          .find(params[:repository_id])
      end

      def tag
        @tag ||= image.tag(params[:id])
      end
    end
  end
end