Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,22 @@ For example, after tagging dataset 21 with the tag `"foo"`:
}
```

### `POST /datasets/untag`
The endpoint now enforces tag ownership when untagging:

- The original tag uploader can untag their own tag.
- Administrators can untag any tag.
- Other authenticated users receive an error.

On success, the response matches legacy behavior and returns only the dataset id:
```json
{
"data_untag": {
"id": "21"
}
}
```

## Studies

### `GET /{id_or_alias}`
Expand Down