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

releases_controller.rb « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c39ee4045f349148b4b00266db0a8a68c8877a7 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class Projects::ReleasesController < Projects::ApplicationController
  # Authorize
  before_action :require_non_empty_project
  before_action :authorize_read_release!

  def index
  end
end