2020-08-07 17:10:07 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Import::AvailableNamespacesController < ApplicationController
|
2020-10-05 08:08:47 -04:00
|
|
|
feature_category :importers
|
|
|
|
|
2020-08-07 17:10:07 -04:00
|
|
|
def index
|
|
|
|
render json: NamespaceSerializer.new.represent(current_user.manageable_groups_with_routes)
|
|
|
|
end
|
|
|
|
end
|