Activity "Read" is now stored

This commit is contained in:
Michael 2022-12-26 08:41:40 +00:00
parent d8fe7e22b0
commit e05cbf46e1
3 changed files with 23 additions and 2 deletions

View file

@ -163,6 +163,13 @@ final class Activity
* @var string
*/
const ANNOUNCE = ActivityNamespace::ACTIVITY2 . 'Announce';
/**
* Indicates that the actor has read the object.
*
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-read
* @var string
*/
const READ = ActivityNamespace::ACTIVITY2 . 'read';
const O_UNFOLLOW = ActivityNamespace::OSTATUS . '/unfollow';
const O_UNFAVOURITE = ActivityNamespace::OSTATUS . '/unfavorite';
@ -194,6 +201,7 @@ final class Activity
self::ANNOUNCE,
self::EMOJIREACT,
self::VIEW,
self::READ,
];
/**