Source code for shuup.front.apps.auth

# This file is part of Shuup.
#
# Copyright (c) 2012-2021, Shuup Commerce Inc. All rights reserved.
#
# This source code is licensed under the OSL-3.0 license found in the
# LICENSE file in the root directory of this source tree.
from shuup.apps import AppConfig


[docs]class AuthAppConfig(AppConfig): name = "shuup.front.apps.auth" verbose_name = "Shuup Frontend - User Authentication" label = "shuup_front.auth" provides = { "front_urls": ["shuup.front.apps.auth.urls:urlpatterns"], }
default_app_config = "shuup.front.apps.auth.AuthAppConfig"