diff options
author | r <r@freesoftwareextremist.com> | 2024-02-05 13:08:23 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2024-02-05 13:08:23 +0000 |
commit | 11ea3b4d47a732fe1c6abc39ce452f899f70859f (patch) | |
tree | 80a8fbba346c4bc6e9fe695620911c9749e8ae46 /renderer | |
parent | ce0195a8104f34ff18f831754c428aec904c0f89 (diff) | |
download | bloat-11ea3b4d47a732fe1c6abc39ce452f899f70859f.tar.gz bloat-11ea3b4d47a732fe1c6abc39ce452f899f70859f.zip |
Add inline follow/unfollow buttons on follow list page
Diffstat (limited to 'renderer')
-rw-r--r-- | renderer/model.go | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/renderer/model.go b/renderer/model.go index e43279d..59b0059 100644 --- a/renderer/model.go +++ b/renderer/model.go @@ -99,12 +99,11 @@ type NotificationData struct { type UserData struct { *CommonData - User *mastodon.Account - IsCurrent bool - Type string - Users []*mastodon.Account - Statuses []*mastodon.Status - NextLink string + User *mastodon.Account + Type string + Users []*mastodon.Account + Statuses []*mastodon.Status + NextLink string } type UserSearchData struct { |