From 80ff25f7b9de800dd360fcb3bfd5cdfd0f8b9b5e Mon Sep 17 00:00:00 2001 From: cahrens Date: Tue, 17 Jan 2017 10:10:20 -0500 Subject: [PATCH] Remove warnings about WIP API. --- openedx/core/djangoapps/user_api/accounts/views.py | 5 +++-- openedx/core/djangoapps/user_api/preferences/views.py | 5 ++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/openedx/core/djangoapps/user_api/accounts/views.py b/openedx/core/djangoapps/user_api/accounts/views.py index a74b1834d3..1678a86559 100644 --- a/openedx/core/djangoapps/user_api/accounts/views.py +++ b/openedx/core/djangoapps/user_api/accounts/views.py @@ -1,9 +1,10 @@ """ -NOTE: this API is WIP and has not yet been approved. Do not use this API without talking to Christina or Andy. +An API for retrieving user account information. -For more information, see: +For additional information and historical context, see: https://openedx.atlassian.net/wiki/display/TNL/User+API """ + from django.db import transaction from edx_rest_framework_extensions.authentication import JwtAuthentication from rest_framework import permissions diff --git a/openedx/core/djangoapps/user_api/preferences/views.py b/openedx/core/djangoapps/user_api/preferences/views.py index 7594f5345c..956ed291b0 100644 --- a/openedx/core/djangoapps/user_api/preferences/views.py +++ b/openedx/core/djangoapps/user_api/preferences/views.py @@ -1,8 +1,7 @@ """ -NOTE: this API is WIP and has not yet been approved. Do not use this API -without talking to Christina or Andy. +An API for retrieving user preference information. -For more information, see: +For additional information and historical context, see: https://openedx.atlassian.net/wiki/display/TNL/User+API """ from rest_framework.views import APIView