dendrite/internal/config/config_roomserver.go
Neil Alexander c782197eed
Updates
2020-08-11 09:35:50 +01:00

23 lines
814 B
Go

package config
type RoomServer struct {
Matrix *Global `json:"-"`
Listen Address `json:"Listen" comment:"Listen address for this component."`
Bind Address `json:"Bind" comment:"Bind address for this component."`
Database DatabaseOptions `json:"Database" comment:"Database configuration for this component."`
}
func (c *RoomServer) Defaults() {
c.Listen = "localhost:7770"
c.Bind = "localhost:7770"
c.Database.Defaults()
c.Database.ConnectionString = "file:roomserver.db"
}
func (c *RoomServer) Verify(configErrs *ConfigErrors, isMonolith bool) {
checkNotEmpty(configErrs, "RoomServer.Listen", string(c.Listen))
checkNotEmpty(configErrs, "RoomServer.Bind", string(c.Bind))
checkNotEmpty(configErrs, "RoomServer.Database.ConnectionString", string(c.Database.ConnectionString))
}