Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Enforcing Notifications

web-app

Some of my users are switching off email notifications at project level - I want to enforce that email alerts are received for assignments , comments , resolutions  and a couple of others

 

is there a way i can enforce the notifications or remove the ability for the user to select which notifications they get.

 

jimw13uk
· 1
jimw13uk
Replies (5)
helpful
0
not helpful

Unfortuantely, you can't control that. However, what you can do is set "Email issue resource" in the Administration -> Notifications page. This will set the resource as issue watcher and will alert them on any change in the issue regardless of their preferences.


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

Are the personal preferences saved in the database anywhere as I can enforce it by putting a trigger on the sql to reinsert the value if its removed.


jimw13uk
· 1
jimw13uk
helpful
0
not helpful

Yes, it is stored in the gemini_watchproject table (per user per project). The value will be updated, not removed.


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

what are the watchcodes in that table - is there a set number of values I have to use


jimw13uk
· 1
jimw13uk
helpful
0
not helpful

The watchcode field is a combination of the following:
            CREATEDALERT = 1,
            UPDATED
ALERT = 2,
            DELETEDALERT = 4,
            COMMENTED
ALERT = 8,
            STATUSCHANGEALERT = 16,
            RESOLUTIONCHANGEALERT = 32,
            ASSIGNEDALERT = 128,
            CLOSED
ALERT = 256,
            RESOLVED_ALERT = 512,

a value of 959 is all the alerts selected. If a user deselected all alerts then the record will be deleted.


Mark Wing
· 9108
Mark Wing