mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-10 15:14:36 +00:00
c9419e51af
* Don't populate config defaults where it doesn't make sense * Fix dendritejs builds
17 lines
519 B
Go
17 lines
519 B
Go
package config
|
|
|
|
type EDUServer struct {
|
|
Matrix *Global `yaml:"-"`
|
|
|
|
InternalAPI InternalAPIOptions `yaml:"internal_api"`
|
|
}
|
|
|
|
func (c *EDUServer) Defaults(generate bool) {
|
|
c.InternalAPI.Listen = "http://localhost:7778"
|
|
c.InternalAPI.Connect = "http://localhost:7778"
|
|
}
|
|
|
|
func (c *EDUServer) Verify(configErrs *ConfigErrors, isMonolith bool) {
|
|
checkURL(configErrs, "edu_server.internal_api.listen", string(c.InternalAPI.Listen))
|
|
checkURL(configErrs, "edu_server.internal_api.connect", string(c.InternalAPI.Connect))
|
|
}
|