2018-09-25 23:45:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-11-05 05:16:41 -05:00
|
|
|
class Projects::ReleasesController < Projects::ApplicationController
|
|
|
|
# Authorize
|
|
|
|
before_action :require_non_empty_project
|
2018-12-13 06:08:53 -05:00
|
|
|
before_action :authorize_read_release!
|
2018-12-10 07:03:00 -05:00
|
|
|
|
|
|
|
def index
|
|
|
|
end
|
2015-11-05 05:16:41 -05:00
|
|
|
end
|