planiverse

A minimalist, no-JS front-end for Mastodon.
git clone https://git.stjo.hn/planiverse
Log | Files | Refs | README | LICENSE

commit 6fa2c955fcf67b160ed65198e8919084d1f81307
parent c3e6b50f37b8d674278a2834ffd5a81b6ec8dc0f
Author: St John Karp <stjohn@fuzzjunket.com>
Date:   Mon,  8 Oct 2018 06:43:38 -0700

Populate visibility for notifications

Populate visibility = null for notifications.

Diffstat:
Mresources/views/notification.blade.php | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/resources/views/notification.blade.php b/resources/views/notification.blade.php @@ -2,7 +2,8 @@ @component('event_info', [ 'account' => $notification['account'], 'created_at' => $notification['created_at'], - 'type' => $notification['type'] + 'type' => $notification['type'], + 'visibility' => null ]) @endcomponent