10 lines
221 B
Ruby
10 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
|