Hi Team,
i just have a small doubt whether zeebe suuports functions like now() and etc…
- now()
Returns the current date-time.
- result: date-time
now()
// date and time("2018-04-29T09:30:00")
- currentUser()
Returns the authenticated user id, or null
if no user is authenticated.
- result: string
currentUser()
// "demo"
- currentUserGroups()
Returns the group ids of the authenticated user, or null
if no user is authenticated.
- result: list of strings
currentUserGroups()
// ["accounting", "sales"]