chore(openapi): Exclude /api/v1/oauth/authorize from the specs since its not supported yet

environments/review-docs-archi-2rzv61/deployments/14145
Georg Krause 2022-10-12 10:51:26 +02:00 zatwierdzone przez Georg Krause
rodzic 727bb56548
commit f1d50d0c17
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -53,6 +53,9 @@ def custom_preprocessing_hook(endpoints):
if path.startswith("/api/v1/users/users"):
continue
if path.startswith("/api/v1/oauth/authorize"):
continue
if path.startswith(f"/api/{api_type}"):
filtered.append((path, path_regex, method, callback))

Wyświetl plik

@ -0,0 +1 @@
Exclude /api/v1/oauth/authorize from the specs since its not supported yet (#1899)