debian-mirror-gitlab/app/controllers/projects/releases_controller.rb
2019-02-15 15:39:39 +05:30

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