diff --git a/resources/assets/js/components/Activity.vue b/resources/assets/js/components/Activity.vue index f0e217e2..d2e7e001 100644 --- a/resources/assets/js/components/Activity.vue +++ b/resources/assets/js/components/Activity.vue @@ -42,6 +42,16 @@ {{truncate(n.account.username)}} shared your post.

+
+

+ {{truncate(n.account.username)}} updated a modlog. +

+
+
+

+ {{truncate(n.account.username)}} tagged you in a post. +

+
{{timeAgo(n.created_at)}}
@@ -236,6 +246,9 @@ export default { case 'comment': return n.status.url; break; + case 'tagged': + return n.tagged.post_url; + break; } return '/'; }, diff --git a/resources/assets/js/components/NotificationCard.vue b/resources/assets/js/components/NotificationCard.vue index 645dc768..2eb3034c 100644 --- a/resources/assets/js/components/NotificationCard.vue +++ b/resources/assets/js/components/NotificationCard.vue @@ -57,6 +57,16 @@ {{truncate(n.account.username)}} updated a modlog.

+
+

+ {{truncate(n.account.username)}} tagged you in a post. +

+
+
+

+ We cannot display this notification at this time. +

+
{{timeAgo(n.created_at)}}