Improvements:

- Fix API-select
- Introduce OTYPE-constants
- Rename `IntroductionFactory` methods
This commit is contained in:
nupplaPhil 2020-01-26 14:30:32 +01:00
parent 74f3a2f90c
commit b85511b00d
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
5 changed files with 14 additions and 8 deletions

View file

@ -44,6 +44,11 @@ use Psr\Log\LoggerInterface;
*/
class Notification extends BaseModel
{
const OTYPE_ITEM = 'item';
const OTYPE_INTRO = 'intro';
const OTYPE_MAIL = 'mail';
const OTYPE_PERSON = 'person';
/** @var \Friendica\Repository\Notification */
private $repo;