From 2d1685868d3f28b7e6c323ea72c7255a159e2c3b Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Wed, 15 Apr 2020 12:04:39 +0000 Subject: [PATCH] Added the meetecho access api key to the list of personal API keys available through the Personal API GUI, and removed a secretariat-only key from the list. - Legacy-Id: 17633 --- ietf/person/models.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ietf/person/models.py b/ietf/person/models.py index 360b05790..2cdbc4240 100644 --- a/ietf/person/models.py +++ b/ietf/person/models.py @@ -330,8 +330,10 @@ def salt(): # Manual maintenance: List all endpoints that use @require_api_key here PERSON_API_KEY_ENDPOINTS = [ ("/api/iesg/position", "/api/iesg/position"), - ("/api/v2/person/person", "/api/v2/person/person"), +# This requires secretariat role, and need not be listed generally: +# ("/api/v2/person/person", "/api/v2/person/person"), ("/api/meeting/session/video/url", "/api/meeting/session/video/url"), + ("/api/v2/person/access/meetecho", "/api/v2/person/access/meetecho"), ] @python_2_unicode_compatible