From 033844c65f835df122020d9d5e11a1db830b8f7a Mon Sep 17 00:00:00 2001 From: tsmethurst Date: Sun, 28 Mar 2021 18:46:19 +0200 Subject: [PATCH] add mediaconfig --- internal/config/config.go | 1 + internal/config/media.go | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 internal/config/media.go diff --git a/internal/config/config.go b/internal/config/config.go index a0ec71469..f68c6e683 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -34,6 +34,7 @@ type Config struct { DBConfig *DBConfig `yaml:"db"` TemplateConfig *TemplateConfig `yaml:"template"` AccountsConfig *AccountsConfig `yaml:"accounts"` + MediaConfig *MediaConfig `yaml:"media"` } // FromFile returns a new config from a file, or an error if something goes amiss. diff --git a/internal/config/media.go b/internal/config/media.go new file mode 100644 index 000000000..ae209d71f --- /dev/null +++ b/internal/config/media.go @@ -0,0 +1,24 @@ +/* + GoToSocial + Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + +package config + +// AccountsConfig contains configuration to do with creating accounts, new registrations, and defaults. +type MediaConfig struct { + MaxImageSize int64 `yaml:"maxImageSize"` +}