mirror of
https://github.com/ansible/awx.git
synced 2026-04-16 15:30:18 -02:30
9 lines
188 B
Python
9 lines
188 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')
|