X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FProtocol%2FActivity.php;h=36bc5e99b384008b60eebcc11ca0330d64fadd4c;hb=f8018f8dfe0183ce7c8f7e8460e0d9fbd5b9395b;hp=aa322f4cf261a1ebb353461d68561c2c9c800b60;hpb=11513519ce11e09c047b1723a4a47034ab187a4b;p=friendica.git diff --git a/src/Protocol/Activity.php b/src/Protocol/Activity.php index aa322f4cf2..36bc5e99b3 100644 --- a/src/Protocol/Activity.php +++ b/src/Protocol/Activity.php @@ -169,15 +169,21 @@ final class Activity * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-read * @var string */ - const READ = ActivityNamespace::ACTIVITY2 . 'read'; - + const READ = ActivityNamespace::ACTIVITY2 . 'Read'; + /** + * Indicates that the actor has listened to the object. + * + * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-listen + * @var string + */ + const LISTEN = ActivityNamespace::ACTIVITY2 . 'Listen'; /** * Indicates that the actor has viewed the object. * * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-view * @var string */ - const VIEW = ActivityNamespace::ACTIVITY2 . 'view'; + const VIEW = ActivityNamespace::ACTIVITY2 . 'View'; const O_UNFOLLOW = ActivityNamespace::OSTATUS . '/unfollow'; const O_UNFAVOURITE = ActivityNamespace::OSTATUS . '/unfavorite';