-
-
Notifications
You must be signed in to change notification settings - Fork 203
Cannot set managed to true #240
Comments
I believe it will be better to create a new endpoint to stop managing a collection instead adding a new field to the table. If we do that, we should do the same to the |
|
Managed collections and hidden fields are basically the same IMO. We use a hidden column for fields, so we should also use a managed column for collections. That’s my two cents 😄 |
We cannot PATCH an unmanaged collection to be managed again. PATCHing { managed: true } results in |
managed
column to directus_collections
We cannot delete records in
directus_collections
through the API. DELETE to /collections not only deletes the row indirectus_collections
, but it also deletes the full collection in the database (by design!). This makes it impossible to use just the existence of the row indirectus_collections
as amanaged
state. To make it work, we should instead use a dedicatedmanaged
flag column indirectus_collections
The text was updated successfully, but these errors were encountered: