gitlab-org--gitlab-foss/app/controllers/projects/releases_controller.rb

11 lines
221 B
Ruby

# 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