Edgewall Software

Changes between Version 14 and Version 15 of CookBook/Notification/Subscriptions


Ignore:
Timestamp:
Sep 4, 2018, 8:57:31 PM (6 years ago)
Author:
Peter Suter
Comment:

Fix TesterCustomFieldSubscriber

Legend:

Unmodified
Added
Removed
Modified
  • CookBook/Notification/Subscriptions

    v14 v15  
    369369        chrome = Chrome(self.env)
    370370        to_set = lambda field: set(chrome.cc_list(field))
    371         user_set = to_set(event.target[self.field_name] or '')
     371        field_set = to_set(event.target[self.field_name] or '')
    372372
    373373        # Harvest previous field values
     
    404404}}}
    4054051. Users can manage this subscription in [/prefs/notification their preferences].
     4061. A default subscription can be configured in the TracIni#notification-subscriber-section:
     407{{{#!ini
     408[notification-subscriber]
     409always_notify_tester = TesterCustomFieldSubscriber
     410}}}