mirror of
https://github.com/friendica/friendica
synced 2025-04-26 19:50:10 +00:00
Activity "Read" is now stored
This commit is contained in:
parent
d8fe7e22b0
commit
e05cbf46e1
3 changed files with 23 additions and 2 deletions
|
@ -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,
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue