From 135cbe76d8d4e9f6c4994de45139891645302397 Mon Sep 17 00:00:00 2001
From: Ned Batchelder <ned@edx.org>
Date: Tue, 28 May 2019 13:08:27 -0400
Subject: [PATCH] yasg settings

---
 openedx/core/openapi.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/openedx/core/openapi.py b/openedx/core/openapi.py
index c7c9a162e4d..d4ab94a08d4 100644
--- a/openedx/core/openapi.py
+++ b/openedx/core/openapi.py
@@ -8,12 +8,12 @@ from drf_yasg import openapi
 
 schema_view = get_schema_view(
     openapi.Info(
-        title="Snippets API",
-        default_version='v1',
-        description="Test description",
-        terms_of_service="https://www.google.com/policies/terms/",
-        contact=openapi.Contact(email="contact@snippets.local"),
-        license=openapi.License(name="BSD License"),
+        title="Open edX API",
+        default_version="v1",
+        description="APIs for access to Open edX information",
+        #terms_of_service="https://www.google.com/policies/terms/",         # TODO: Do we have these?
+        contact=openapi.Contact(email="oscm@edx.org"),
+        #license=openapi.License(name="BSD License"),                       # TODO: What does this mean?
     ),
     public=True,
     permission_classes=(permissions.AllowAny,),
-- 
GitLab