In addition to logging the user out of LMS, the logout view also logs users out of the IDAs to which they previously authenticated. ECOM-4610
12 lines
316 B
Python
12 lines
316 B
Python
""" Django template ontext processors. """
|
|
|
|
from django.conf import settings
|
|
|
|
from microsite_configuration import microsite
|
|
|
|
|
|
def microsite_context(request): # pylint: disable=missing-docstring,unused-argument
|
|
return {
|
|
'platform_name': microsite.get_value('platform_name', settings.PLATFORM_NAME)
|
|
}
|