summaryrefslogtreecommitdiff
path: root/internal/trans/model/account.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/trans/model/account.go')
-rw-r--r--internal/trans/model/account.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/internal/trans/model/account.go b/internal/trans/model/account.go
index 097dea3a3..ffcb0d5ae 100644
--- a/internal/trans/model/account.go
+++ b/internal/trans/model/account.go
@@ -34,8 +34,6 @@ type Account struct {
DisplayName string `json:"displayName,omitempty" bun:",nullzero"`
Note string `json:"note,omitempty" bun:",nullzero"`
NoteRaw string `json:"noteRaw,omitempty" bun:",nullzero"`
- Memorial *bool `json:"memorial"`
- Bot *bool `json:"bot"`
Locked *bool `json:"locked"`
Discoverable *bool `json:"discoverable"`
URI string `json:"uri" bun:",nullzero"`
@@ -45,7 +43,7 @@ type Account struct {
FollowingURI string `json:"followingUri" bun:",nullzero"`
FollowersURI string `json:"followersUri" bun:",nullzero"`
FeaturedCollectionURI string `json:"featuredCollectionUri" bun:",nullzero"`
- ActorType string `json:"actorType" bun:",nullzero"`
+ ActorType int16 `json:"actorType" bun:",nullzero"`
PrivateKey *rsa.PrivateKey `json:"-" mapstructure:"-"`
PrivateKeyString string `json:"privateKey,omitempty" mapstructure:"privateKey" bun:"-"`
PublicKey *rsa.PublicKey `json:"-" mapstructure:"-"`