From 01982e9a80fab1ea6797ebfbf5cb55d9a52229f8 Mon Sep 17 00:00:00 2001 From: pcain-usgs <pcain@usgs.gov> Date: Tue, 13 Jul 2021 12:08:17 -0600 Subject: [PATCH] update metadata web service documentation --- geomagio/api/secure/app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/geomagio/api/secure/app.py b/geomagio/api/secure/app.py index 8ced54ab..06a1b701 100644 --- a/geomagio/api/secure/app.py +++ b/geomagio/api/secure/app.py @@ -11,7 +11,11 @@ from .metadata import router as metadata_router from .SessionMiddleware import SessionMiddleware -app = FastAPI(root_path="/ws/secure") +app = FastAPI( + title="Geomagnetism Metadata Web Service", + description="Web service for interaction with operational metadata records", + root_path="/ws/secure", +) # NOTE: database used for sessions is started by ..app.app, # which mounts this application at /ws/secure -- GitLab