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
A really basic implementation could be something like DELETE /assets/{uuid}
(theoretically deletes asset + all associated versions)
BUT a more robust implementation could be PUT /assets/{uuid}/archive with body { archived: true } to "archive" an asset
with archive kind of working like trash where it doesn't actually delete anything yet
and then maybe some route to clear archive like DELETE /assets/archive
The text was updated successfully, but these errors were encountered:
A really basic implementation could be something like
DELETE /assets/{uuid}
(theoretically deletes asset + all associated versions)
BUT a more robust implementation could be
PUT /assets/{uuid}/archive
with body{ archived: true }
to "archive" an assetwith archive kind of working like trash where it doesn't actually delete anything yet
and then maybe some route to clear archive like
DELETE /assets/archive
The text was updated successfully, but these errors were encountered: