elemental-lowcode icon indicating copy to clipboard operation
elemental-lowcode copied to clipboard

Elemental lowcode development platform.

Results 71 elemental-lowcode issues
Sort by recently updated
recently updated
newest added

Add support for client credentials header token authentication on outgoing HTTP requests. The configuration for this authentication mechanism should be: ``` { "request": { "uri": "https://jsonplaceholder.typicode.com/posts/$.body.id", "method": "get", "authentication" :...

Add the ability to enable account lockouts on a per client basis: ``` { "client_id": "interface-community-client", ... "features": { "lockout": { "enabled": true, "count" : 5, "interval" : 300, "back_off"...

Add a new collection named `content` into the client configuration document: ```{ "client_id" : "my-client", "client_secret" : "my really secret secret", "scope" : "openid roles", "redirect_uris" : [ "https://my.website" ],...

Create a shared service that can be utilised across all APIs for managing and understanding the context of incoming requests - and should be made available to all outgoing requests....

Add the ability to enable registration claims: ```{ "client_id": "interface-community-client", ... "features": { "registration": { "enabled": true, "claims" : [ { "name" : "first_name", "label" : "Name", "placeholder" : "your...

Add a production mode into the admin UI so it uses a single compiled JS/template asset instead of loading everything from singular files.

Allow the following features to be configured on/off on a per client basis: * Set password for first time enabled * Require confirmation * Account lockout settings & timeouts *...

Allow for reusable tag packs to be constructed for websites. These provide reusable tags across website instances. Ensure that there are a set of default custom tags included in the...