mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[feature] Add instance-stats-randomize
config option (#3718)
* [feature] Add `instance-stats-randomize` config option * don't use cache (overkill)
This commit is contained in:
@ -17,7 +17,10 @@
|
||||
|
||||
package model
|
||||
|
||||
import "mime/multipart"
|
||||
import (
|
||||
"mime/multipart"
|
||||
"time"
|
||||
)
|
||||
|
||||
// InstanceSettingsUpdateRequest models an instance update request.
|
||||
//
|
||||
@ -148,3 +151,11 @@ type InstanceConfigurationEmojis struct {
|
||||
// example: 51200
|
||||
EmojiSizeLimit int `json:"emoji_size_limit"`
|
||||
}
|
||||
|
||||
// swagger:ignore
|
||||
type RandomStats struct {
|
||||
Statuses int64
|
||||
TotalUsers int64
|
||||
MonthlyActiveUsers int64
|
||||
Generated time.Time
|
||||
}
|
||||
|
Reference in New Issue
Block a user