Changes between Version 1 and Version 2 of S3/Notifications


Ignore:
Timestamp:
09/05/13 09:35:05 (11 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S3/Notifications

    v1 v2  
    1010=== Data Model ===
    1111
    12 Subscriptions use the S3SubscriptionsModel in modules/s3db/pr.py:
     12Subscriptions use the '''S3SubscriptionsModel''' in modules/s3db/pr.py:
    1313
    1414[[Image(subscription_model.png)]]
    1515
     16The {{{pr_subscription}}} table stores the notification settings and links to the subscriber person entity (user) and the filter.
     17
     18The {{{pr_subscription_resource}}} table is a component of {{{pr_subscription}}} and stores the name of the resource and the URL of the controller to check for updates.
     19
     20All resources in a subscription use the same filter. If different filters are to be used, multiple subscriptions are required.
     21
     22=== GUI ===
     23
     24No generic user interface for subscriptions has been implemented so far.
     25
     26A custom interface can be found in private/templates/DRMP/controllers.py. This interface manages a single subscription per user with multiple resources using a common filter.
    1627== Notifications ==