I want to fire a custom email post function only if a ticket is created from 12am and 8:59 am PST on Saturday and Sunday.
What would the condition code look like?
P.S. Is there a list of all of the available options for conditions?
You can create a post function that checks the current date. I'd suggest that because you don't need a specific field of the issue for checking the date of creation.
Your check can be similar to this one:
def cal = Calendar.getInstance() cal.setTime(new Date()) cal.get(Calendar.DAY_OF_WEEK) in [Calendar.SATURDAY, Calendar.SUNDAY] && cal.get(Calendar.HOUR) in (0 .. 8)
The last line will return a boolean (the return is implicit), that will be the condition.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.