In JiraSM (DataCenter), we have projects for different regions, but Customer profiles are defaulting to the time zone globally set at the JiraSM level (GMT). Is there a way to bulk-change the time zone for Customers in a specific project? Maybe a back-end change?
Thanks, All!
The TimeZoneService (https://docs.atlassian.com/software/jira/docs/api/9.4.0/com/atlassian/jira/timezone/TimeZoneService.html) will help you.
Thank you, Tim!
Sorry to be a bother, but how would I use this class - specifically the setUserDefaultTimeZone method - in a script(?) to bulk-change the time zones for the customers in just one project?
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @timothy lee
in practise you have here 2 scenarios:
In the best case you don't have to make decisions for a timezone base on projects itself. This would require a mapping and might be sometime also inaccurate or you have to deal with edge-cases that people have access to multiple projects with different timezones. If the instance itself is also connected to active directory (which knows the user configured timezone and also language) then this could be re-used and would be more accurate.
Back to your scenario:
So looping through all users / projects, identify which users are in scope (customers and not agents!), have a mapping of project ABC needs Timezone XYZ, set the users timezone.
But if you are not familiar with such things, that can be too complicated.
So maybe a simple HTTP REST endpoint that takes a username and timezone (inside the endpoint, find the user, set timezone) would help as well and you can intercept this multiple times from whatever tool you prefer. Assuming here, that you know that user ABC needs timezone XYZ
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Get started with Jira Service Management
These short, self-paced courses will help you get up and running in Jira Service Management in just 90 minutes.
Learning Path
Adopt ITSM practices with Jira Service Management
Use this path to build your IT Service Management knowledge and earn an Atlassian certification.
Setting Up ITSM Projects in Jira Service Management
This training series helps you get started in Jira Service Management quickly with the new ITSM project template.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.