добавил пользователей для сервера и роли

добавил инвайт-ссылки с ролью оператор для сервера
добавил супер-админку для смены владельцев
добавил уведомления о смене ролей на серверах
добавил модалку для фото прям в черновике
добавил UI для редактирования прав
This commit is contained in:
2025-12-23 13:06:06 +03:00
parent 9441579a34
commit b4ce819931
21 changed files with 9244 additions and 418 deletions

View File

@@ -18,9 +18,11 @@ type Config struct {
}
type AppConfig struct {
Port string `mapstructure:"port"`
Mode string `mapstructure:"mode"` // debug/release
DropTables bool `mapstructure:"drop_tables"`
Port string `mapstructure:"port"`
Mode string `mapstructure:"mode"` // debug/release
DropTables bool `mapstructure:"drop_tables"`
StoragePath string `mapstructure:"storage_path"`
PublicURL string `mapstructure:"public_url"`
}
type DBConfig struct {