Move Notify::TYPE_SYSTEM

This commit is contained in:
nupplaPhil 2020-02-04 22:23:37 +01:00
parent c6915dc672
commit 511556085a
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
4 changed files with 7 additions and 15 deletions

View file

@ -8,7 +8,7 @@ namespace Friendica\Model\Notify;
class Type
{
/** @var int Notification about a introduction */
const INTRO = 1;
const INTRO = 1;
/** @var int Notification about a confirmed introduction */
const CONFIRM = 2;
/** @var int Notification about a post on your wall */
@ -33,4 +33,7 @@ class Type
const POKE = 512;
/** @var int Notification about either a contact had posted something directly or the contact is a mentioned forum */
const SHARE = 1024;
/** @var int Global System notifications */
const SYSTEM = 32768;
}