mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-13 06:57:29 -06:00
fix public timeline bug (#150)
This commit is contained in:
parent
2dc9fc1626
commit
ddc120d5e6
18 changed files with 162 additions and 79 deletions
|
|
@ -34,9 +34,9 @@ type DomainBlock struct {
|
|||
CreatedByAccountID string `bun:"type:CHAR(26),notnull"`
|
||||
CreatedByAccount *Account `bun:"rel:belongs-to"`
|
||||
// Private comment on this block, viewable to admins
|
||||
PrivateComment string
|
||||
PrivateComment string `bun:",nullzero"`
|
||||
// Public comment on this block, viewable (optionally) by everyone
|
||||
PublicComment string
|
||||
PublicComment string `bun:",nullzero"`
|
||||
// whether the domain name should appear obfuscated when displaying it publicly
|
||||
Obfuscate bool
|
||||
// if this block was created through a subscription, what's the subscription ID?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue