Activity log
Every significant action on an entry — create, update, publish, unpublish, delete, restore — is recorded with the acting user and a timestamp.
Where to find it
Open any entry in the editor. The Meta panel on the right shows an Activity section at the bottom, listing the last 10 events in reverse chronological order.
Recorded events
| Event | When it fires |
|---|---|
create | Entry is created for the first time |
update | Entry is saved without a status change |
publish | Status changes from draft → published |
unpublish | Status changes from published → draft |
delete | Entry is moved to trash |
restore | Entry is restored from trash |
User attribution
The username is stored directly in the audit record at write time. If a user is later deleted, their past activity remains visible — the log is never retroactively altered.
API
GET /api/collections/:collectionId/entries/:slug/activity
Returns up to 20 recent events:
[
{ "id": "…", "username": "alice", "action": "publish", "created_at": "2026-05-01 14:32:00" },
{ "id": "…", "username": "bob", "action": "update", "created_at": "2026-05-01 13:11:00" }
]