News
The service's service team informs requesters by means of updated messages about:
- scheduled service outages,
- ongoing outages and failures,
- pending changes to the service offerings, etc.
Current messages can also be used to share emergency information within service service teams.
News can be read by clicking on the News icon, which is displayed on every page of the application in the top-right corner. If there are messages you haven't read yet, the icon shows the number of messages. Service tickets can only read the messages. Service team members can create and edit messages using the manage command.
Requesters can still see the news on the main page and, for specific services, in the service catalog and in the new-ticket form.
If you need to find out which users have viewed a news item, you can find this information in the database in the NewsRead table.
Example of getting a list of all users who have viewed the news post named "S3 server outage":
select NR.* from NewsRead NR
join News N on N.id = NR.NewsId
where N.Subject = N'S3 server outage'