2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
class Projects::ReleasesController < Projects::ApplicationController
|
|
|
|
# Authorize
|
|
|
|
before_action :require_non_empty_project
|
2019-02-13 22:33:31 +05:30
|
|
|
before_action :authorize_read_release!
|
2015-11-26 14:37:03 +05:30
|
|
|
|
2019-02-13 22:33:31 +05:30
|
|
|
def index
|
2015-11-26 14:37:03 +05:30
|
|
|
end
|
|
|
|
end
|