How to change organization title
- By default owner email is used as organization title. It can be fixed using
/admin/organizations/
page. - Or customers can do it through API:
{”title”: “new title”} PATCH api/organization/
curl -X PATCH -H "Content-Type: application/json" -H "Authorization: Token your_api_token" -d '{"title": "new title"}' <https://your-api-url.com/api/organization/>
Disable payload data in activity logs
If it is important to follow CCPA / other complaints, it might be necessary to disable extra payload data in activity logs, so this data won’t be saved in DB. You can do this using terminal inside of app container:
x = LseOrganization.objects.get(organization=<id>)
x.extra_data_on_activity_logs=False
x.save()
We will add this toggle as organization settings later.