Merge pull request #13670 from nextcloud/backport/13668/stable32

This commit is contained in:
John Molakvoæ
2025-09-29 09:37:35 +02:00
committed by GitHub

View File

@@ -662,7 +662,7 @@ This is an exhaustive list of available events. It features the event ID and the
}
}
* OCP\\SystemTag\\MapperEvent
* OCP\\SystemTag\\TagAssignedEvent
.. code-block:: text
@@ -671,9 +671,23 @@ This is an exhaustive list of available events. It features the event ID and the
"time": int,
"event": array{
"class": string,
'eventType' => 'OCP\SystemTag\ISystemTagObjectMapper::assignTags' | 'OCP\SystemTag\ISystemTagObjectMapper::unassignTags',
'objectType' => string (e.g. 'files'),
'objectId' => string,
'tagIds' => int[],
"objectType": string (e.g. 'files'),
"objectIds": string[],
"tagIds": int[],
}
}
* OCP\\SystemTag\\TagUnassignedEvent
.. code-block:: text
array {
"user": array {"uid": string, "displayName": string},
"time": int,
"event": array{
"class": string,
"objectType": string (e.g. 'files'),
"objectIds": string[],
"tagIds": int[],
}
}