Source code for shoop.front.apps.customer_information

# This file is part of Shoop.
#
# Copyright (c) 2012-2016, Shoop Ltd. All rights reserved.
#
# This source code is licensed under the AGPLv3 license found in the
# LICENSE file in the root directory of this source tree.
from __future__ import unicode_literals

from django.utils.translation import ugettext_lazy as _

import shoop.apps


[docs]class AppConfig(shoop.apps.AppConfig): name = __name__ verbose_name = _('Shoop Frontend - Customer Information Editing') label = 'shoop_front.customer_information' provides = { 'front_urls': [__name__ + '.urls:urlpatterns'], }
default_app_config = __name__ + '.AppConfig'