12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- defined('GNUSOCIAL') || die();
- abstract class FullNoticeStream extends NoticeStream
- {
- protected $selectVerbs = [
- ActivityVerb::POST => true,
- ActivityVerb::SHARE => true,
- ActivityVerb::FOLLOW => true,
- ActivityVerb::UNFOLLOW => true,
- ActivityVerb::JOIN => true,
- ActivityVerb::LEAVE => true,
- ];
- }
|