debian-mirror-gitlab/app/controllers/projects/settings/badges_controller.rb
2018-05-09 12:01:36 +05:30

13 lines
313 B
Ruby

module Projects
module Settings
class BadgesController < Projects::ApplicationController
include GrapeRouteHelpers::NamedRouteMatcher
before_action :authorize_admin_project!
def index
@badge_api_endpoint = api_v4_projects_badges_path(id: @project.id)
end
end
end
end