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