Does zeebe support camunda functions

Hi Team,

i just have a small doubt whether zeebe suuports functions like now() and etc…

  1. now()

Returns the current date-time.

  • result: date-time
now()
// date and time("2018-04-29T09:30:00")
  1. currentUser()

Returns the authenticated user id, or null if no user is authenticated.

  • result: string
currentUser()
// "demo"
  1. currentUserGroups()

Returns the group ids of the authenticated user, or null if no user is authenticated.

  • result: list of strings
currentUserGroups()
// ["accounting", "sales"]
1 Like

Hi @Tauqeer,

currently, none of these functions are supported.

But I’m working on adding the now() function (https://github.com/camunda/feel-scala/issues/118).

We have no plan to add the other functions currentUser() and currentUserGroups(). Zeebe is not connected to an authentication service. So, I don’t see a use case for this.

Best regards,
Philipp

1 Like

Thank you much @philipp.ossler.