application-research / delta-ui

7 stars 0 forks source link

[Feature] Provider - allow enabling/disabling self-service, changing name #14

Closed jcace closed 1 year ago

jcace commented 1 year ago

Update the Providers ui to allow the user to enable or disable the self-service for that provider, as well as changing the friendly name.

This will be controlled by a boolean flag allow_self_service on the provider - true = enabled, false = disabled.

If self service is disabled, the provider's API key/UUID could be hidden as it's not relevant unless enabled.

jcace commented 1 year ago

API request to update it :

POST /api/v1/providers/f012345

body:

{
        "actor_name": "jason",
        "allow_self_service": true
}
elijaharita commented 1 year ago

done