12 lines
231 B
Python
12 lines
231 B
Python
|
"""passbook TOTP AppConfig"""
|
||
|
|
||
|
from django.apps.config import AppConfig
|
||
|
|
||
|
|
||
|
class PassbookTOTPConfig(AppConfig):
|
||
|
"""passbook TOTP AppConfig"""
|
||
|
|
||
|
name = 'passbook.totp'
|
||
|
label = 'passbook_totp'
|
||
|
mountpoint = 'user/totp/'
|