Remove internal_only from superuser APIs for users and orgs

This commit is contained in:
Joseph Schorr 2018-03-01 15:14:39 -05:00
parent 5cecc54bd5
commit 4be3594ec8

View file

@ -248,7 +248,6 @@ class SuperUserOrganizationList(ApiResource):
@resource('/v1/superuser/users/')
@internal_only
@show_if(features.SUPER_USERS)
class SuperUserList(ApiResource):
""" Resource for listing users in the system. """
@ -515,7 +514,6 @@ class SuperUserTakeOwnership(ApiResource):
@resource('/v1/superuser/organizations/<name>')
@path_param('name', 'The name of the organizaton being managed')
@internal_only
@show_if(features.SUPER_USERS)
class SuperUserOrganizationManagement(ApiResource):
""" Resource for managing organizations in the system. """