Merge pull request #3017 from coreos-inc/superuser-api

Remove internal_only from superuser APIs for users and orgs
This commit is contained in:
josephschorr 2018-03-01 15:25:01 -05:00 committed by GitHub
commit fd3117f217
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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. """