mirror of
https://github.com/ansible/awx.git
synced 2026-01-21 22:48:02 -03:30
10 lines
189 B
Python
10 lines
189 B
Python
# Django
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class SSOConfig(AppConfig):
|
|
|
|
name = 'awx.sso'
|
|
verbose_name = _('Single Sign-On')
|