1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-03-23 07:06:18 +02:00

aligned struct fields

This commit is contained in:
Gani Georgiev 2024-11-11 00:04:22 +02:00
parent 7119ff4716
commit a89960db71

View File

@ -123,10 +123,10 @@ type settings struct {
Backups BackupsConfig `form:"backups" json:"backups"`
S3 S3Config `form:"s3" json:"s3"`
Meta MetaConfig `form:"meta" json:"meta"`
Logs LogsConfig `form:"logs" json:"logs"`
Batch BatchConfig `form:"batch" json:"batch"`
RateLimits RateLimitsConfig `form:"rateLimits" json:"rateLimits"`
TrustedProxy TrustedProxyConfig `form:"trustedProxy" json:"trustedProxy"`
Batch BatchConfig `form:"batch" json:"batch"`
Logs LogsConfig `form:"logs" json:"logs"`
}
// Settings defines the PocketBase app settings.