Add templated inbox notifications.

This commit is contained in:
Colin Kuskie 2009-05-13 18:16:49 +00:00
parent 46015f727b
commit 9827c4a520
5 changed files with 141 additions and 62 deletions

View file

@ -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.

Binary file not shown.

View file

@ -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 --------------------------------
#----------------------------------------------------------------------------