Source code for shuup.front.apps.simple_order_notification

# -*- coding: utf-8 -*-
# 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 SimpleOrderNotificationAppConfig(AppConfig): name = "shuup.front.apps.simple_order_notification" verbose_name = "Shuup Frontend - Simple Order Notification" label = "shuup_front.simple_order_notification" provides = { "admin_module": [ "shuup.front.apps.simple_order_notification.admin_module:SimpleOrderNotificationModule", ] }
default_app_config = "shuup.front.apps.simple_order_notification.SimpleOrderNotificationAppConfig"