https://{yourTenant}.us.webtask.io/auth0-delegated-admin/en/users
will set locale to en
.(function (error, languageDictionary) { return languageDictionary.customErrors[error] || error; }).toString()
false
, removes Create User
button and forbids creating new users, true
by default.
user_metadata
and app_metadata
. You must update the user object passed to the callback function with the user_metadata
and app_metadata
from the context (ctx
object) provided to the Hook."property": "app_metadata.dbId"
sets ctx.payload.app_metadata.dbId
.
true
, will just return user.<property>
.false
this value will not be displayed on any page (unless overridden in search, edit, or create).(function display(user, value, languageDictionary) { return moment(value).fromNow(); }).toString()
false
, will not show up in the search table.Change Profile
page on the User Actions dropdown on the user page.
false
, will not show up on any edit/update page.
true
if the component should be read only; default is false.
(function validate(value, values, context, languageDictionary) { if (value...) return 'something went wrong'; return false; }).toString()
.
false
, will not show up on the create page.
(function validate(value, values, context, languageDictionary) { if (value...) return 'something went wrong'; return false; }).toString()
(function(user, value) { return (value || user.nickname || user.email || user.user_id); }).toString()
https://{yourTenant}.us.webtask.io/auth0-delegated-admin/en/users
will set context.locale
to en
in the settings query.
The languageDictionary is set as part of the settings query, which allows you to: