瀏覽代碼

Register the Notification model to Django admin (#4186)

master
Islam Mesha 1 年之前
父節點
當前提交
413de1ffae
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 3 行新增2 行删除
  1. 3
    2
      src/oscar/apps/communication/admin.py

+ 3
- 2
src/oscar/apps/communication/admin.py 查看文件

@@ -2,9 +2,10 @@ from django.contrib import admin
2 2
 
3 3
 from oscar.core.loading import get_model
4 4
 
5
-CommunicationEventType = get_model("communication", "CommunicationEventType")
6 5
 Email = get_model("communication", "Email")
7
-
6
+Notification = get_model("communication", "Notification")
7
+CommunicationEventType = get_model("communication", "CommunicationEventType")
8 8
 
9 9
 admin.site.register(Email)
10
+admin.site.register(Notification)
10 11
 admin.site.register(CommunicationEventType)

Loading…
取消
儲存