You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Function that adds two numbers passed in the argument object. It can be called via $call('add') or via REST
47
145
```json
@@ -280,3 +378,32 @@ Query timeout in milliseconds for queries issued when browsing data. To disable
280
378
"integer" : 1000
281
379
}
282
380
```
381
+
## tenantusers
382
+
user@example.org is allowed (active) on the platform and is in the role 'authenticated'
383
+
```json
384
+
{
385
+
"ID" : "user@example.org",
386
+
"active" : true,
387
+
"roles" : [ "authenticated" ]
388
+
}
389
+
```
390
+
## tenantusers
391
+
Sets the 'homepage' variable (the initial page after login) to '/page/test' for user@example.org (overrides the global and role setting for 'homepage')
392
+
```json
393
+
{
394
+
"ID" : "user@example.org",
395
+
"properties" : {
396
+
"homepage" : "/page/test"
397
+
}
398
+
}
399
+
```
400
+
## dj-role
401
+
defines the role 'admin'. Sets the 'homepage' variable (the initial page after login) is set to '/page/Info' for all users in this role (overrides the global setting 'homepage')
schemaExpression is an expression that computes JSON Schema which in turn defines the form fields dynamically: The 'type' field is defined as the switch. Other fields can specify 'case' with the type value of when they are shown
0 commit comments