request-unsubscribe-notification.xql
DB Query file
Related Files
- packages/notifications/www/request-unsubscribe-notification.xql
- packages/notifications/www/request-unsubscribe-notification.tcl
- packages/notifications/www/request-unsubscribe-notification.adp
[ hide source ] | [ make this the default ]
File Contents
<?xml version="1.0"?> <queryset> <fullquery name="notify_users"> <querytext> select p.first_names || ' ' || p.last_name as name,nr.request_id, (select name from notification_intervals where interval_id= nr.interval_id) as interval_name ,(select short_name from notification_delivery_methods where delivery_method_id=nr.delivery_method_id) as delivery_name, (select pretty_name from notification_types where type_id = :type_id) as pretty_name from persons p, notification_requests nr where p.person_id = nr.user_id and nr.object_id = :object_id and nr.type_id = :type_id </querytext> </fullquery> <fullquery name="get_name_notification"> <querytext> select pretty_name from notification_types where type_id = :type_id </querytext> </fullquery> </queryset>