chore(openapi): Exclude /api/v1/oauth/authorize from the specs since its not supported yet
This commit is contained in:
parent
727bb56548
commit
f1d50d0c17
|
@ -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))
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Exclude /api/v1/oauth/authorize from the specs since its not supported yet (#1899)
|
Loading…
Reference in New Issue