mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-13 11:31:51 -05:00
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')
|