Initial prototype of API explorer at /-/api, refs #1871

This commit is contained in:
Simon Willison 2022-10-29 23:20:11 -07:00
commit f6bf2d8045
4 changed files with 87 additions and 1 deletions

View file

@ -62,7 +62,7 @@ def documented_views():
if first_word.endswith("View"):
view_labels.add(first_word)
# We deliberately don't document these:
view_labels.update(("PatternPortfolioView", "AuthTokenView"))
view_labels.update(("PatternPortfolioView", "AuthTokenView", "ApiExplorerView"))
return view_labels