bit of tidying up!

This commit is contained in:
tsmethurst
2021-06-16 12:10:00 +02:00
parent 740086576c
commit a42e05eee0
8 changed files with 134 additions and 122 deletions

View File

@ -140,20 +140,3 @@ type VisibilityAdvanced struct {
// This status can be liked/faved
Likeable bool `pg:"default:true"`
}
// RelevantAccounts denotes accounts that are replied to, boosted by, or mentioned in a status.
type RelevantAccounts struct {
StatusAuthor *Account
ReplyToAccount *Account
BoostedAccount *Account
BoostedReplyToAccount *Account
MentionedAccounts []*Account
}
// StatusInteractions denotes interactions with a status on behalf of an account.
type StatusInteractions struct {
Faved bool
Muted bool
Bookmarked bool
Reblogged bool
}