summaryrefslogtreecommitdiff
path: root/app/controllers/projects/releases_controller.rb
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