Add templated inbox notifications.
This commit is contained in:
parent
46015f727b
commit
9827c4a520
5 changed files with 141 additions and 62 deletions
|
|
@ -25,6 +25,7 @@
|
|||
- Refactored transaction tmpl_var generation into WebGUI::Shop::Transaction. ( Martin Kamerbeek / Oqapi )
|
||||
- rfe #9906: Inbox Filtering
|
||||
- rfe #9911: Inbox: Copy Sender
|
||||
- rfe #9907: Inbox: Notifications
|
||||
|
||||
7.7.5
|
||||
- Adding StoryManager.
|
||||
|
|
|
|||
BIN
docs/upgrades/packages-7.7.6/inbox_notification.wgpkg
Normal file
BIN
docs/upgrades/packages-7.7.6/inbox_notification.wgpkg
Normal file
Binary file not shown.
|
|
@ -38,6 +38,7 @@ addTransactionTaxColumns( $session );
|
|||
addListingsCacheTimeoutToMatrix( $session );
|
||||
addSurveyFeedbackTemplateColumn( $session );
|
||||
installCopySender($session);
|
||||
installNotificationsSettings($session);
|
||||
|
||||
finish($session);
|
||||
|
||||
|
|
@ -155,6 +156,12 @@ sub installCopySender {
|
|||
$session->setting->add('inboxCopySender',0);
|
||||
}
|
||||
|
||||
sub installNotificationsSettings {
|
||||
my $session = shift;
|
||||
$session->setting->add('sendInboxNotificationsOnly', 0);
|
||||
$session->setting->add('inboxNotificationTemplateId', 'b1316COmd9xRv4fCI3LLGA');
|
||||
}
|
||||
|
||||
# -------------- DO NOT EDIT BELOW THIS LINE --------------------------------
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue