diff options
author | 2023-07-24 13:14:13 +0100 | |
---|---|---|
committer | 2023-07-24 13:14:13 +0100 | |
commit | 9eff0d46e49b947dc2642207ee49ed657eb6b565 (patch) | |
tree | 62994afff170737d83f1ed911e385504a0ad16cd /testrig/testmodels.go | |
parent | [chore]: Bump github.com/microcosm-cc/bluemonday from 1.0.24 to 1.0.25 (#2021) (diff) | |
download | gotosocial-9eff0d46e49b947dc2642207ee49ed657eb6b565.tar.xz |
[feature/performance] support uncaching remote emoji + scheduled cleanup functions (#1987)
Diffstat (limited to 'testrig/testmodels.go')
-rw-r--r-- | testrig/testmodels.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testrig/testmodels.go b/testrig/testmodels.go index c55b80e60..837869c83 100644 --- a/testrig/testmodels.go +++ b/testrig/testmodels.go @@ -1161,6 +1161,7 @@ func NewTestEmojis() map[string]*gtsmodel.Emoji { URI: "http://localhost:8080/emoji/01F8MH9H8E4VG3KDYJR9EGPXCQ", VisibleInPicker: TrueBool(), CategoryID: "01GGQ8V4993XK67B2JB396YFB7", + Cached: FalseBool(), }, "yell": { ID: "01GD5KP5CQEE1R3X43Y1EHS2CW", @@ -1183,6 +1184,7 @@ func NewTestEmojis() map[string]*gtsmodel.Emoji { URI: "http://fossbros-anonymous.io/emoji/01GD5KP5CQEE1R3X43Y1EHS2CW", VisibleInPicker: FalseBool(), CategoryID: "", + Cached: FalseBool(), }, } } |