Files
edx-platform/openedx/core/djangoapps/user_authn
Robert Raposa 53239bdf37 Remove JWT_COOKIES_FLAG.
The JWT_COOKIES_FLAG was a temporary flag used for rollout of the new
JWT cookies. These are live in Production, so we are removing the flag.

Without this flag, we set JWT cookies during login. However, this
requires an oAuth Client that isn't always available during unit tests.
We introduced a feature flag that is only used for unit tests to
disable setting the JWT cookies. The code explains a bit more why this
solution was selected over adding the oauth client to the database.

ARCH-247
2018-10-31 10:29:05 -04:00
..
2018-10-31 10:29:05 -04:00
2018-10-31 10:29:05 -04:00
2018-10-31 10:29:05 -04:00
2018-09-17 14:37:05 -04:00

The ``user_authn`` app contains user authentication related features such as
login and registration.

* Ideally this would be in its own service, but at this point, LMS is the home
  of all authentication related features.

* At this time, these features are still plugged into Studio. Future clean-up
  in Studio is intended to make this an LMS only feature.