Update NotificationTransformer

This commit is contained in:
Daniel Supernault 2019-09-26 21:58:40 -06:00
parent 530149f0f4
commit abcc62a3fc
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -49,10 +49,9 @@ class NotificationTransformer extends Fractal\TransformerAbstract
$verbs = [
'follow' => 'follow',
'mention' => 'mention',
'reblog' => 'share',
'share' => 'share',
'share' => 'reblog',
'like' => 'favourite',
'comment' => 'comment',
'comment' => 'mention',
];
return $verbs[$verb];
}