diff --git a/data/database.py b/data/database.py index d0b7357b9..d4b9efa5b 100644 --- a/data/database.py +++ b/data/database.py @@ -878,6 +878,7 @@ class TorrentInfo(BaseModel): class ServiceKeyApprovalType(Enum): SUPERUSER = 'Super User API' KEY_ROTATION = 'Key Rotation' + AUTOMATIC = 'Automatic' _ServiceKeyApproverProxy = Proxy() diff --git a/endpoints/api/superuser.py b/endpoints/api/superuser.py index fba5c7273..fc7ef8c8e 100644 --- a/endpoints/api/superuser.py +++ b/endpoints/api/superuser.py @@ -142,8 +142,6 @@ def org_view(org): } def user_view(user, password=None): - if user is None: - return None user_data = { 'kind': 'user', 'name': user.username, @@ -493,7 +491,7 @@ def key_view(key): def approval_view(approval): return { - 'approver': user_view(approval.approver), + 'approver': user_view(approval.approver) if approval.approver else None, 'approval_type': approval.approval_type, 'approved_date': approval.approved_date, 'notes': approval.notes, diff --git a/static/css/directives/ui/service-keys-manager.css b/static/css/directives/ui/service-keys-manager.css index f3e7beb45..c7b1e54ae 100644 --- a/static/css/directives/ui/service-keys-manager.css +++ b/static/css/directives/ui/service-keys-manager.css @@ -44,6 +44,11 @@ color: #128E72; } +.service-keys-manager-element .approval-automatic { + font-size: 12px; + color: #777; +} + .service-keys-manager-element i.fa { margin-right: 4px; } diff --git a/static/directives/service-keys-manager.html b/static/directives/service-keys-manager.html index 9f8d7c1b3..964523dab 100644 --- a/static/directives/service-keys-manager.html +++ b/static/directives/service-keys-manager.html @@ -130,10 +130,10 @@