feat(api): add email configuration

This commit is contained in:
jo 2023-05-31 13:58:18 +02:00 committed by Kyle Robbertze
parent 001466f8fd
commit c2c0be1fbc
9 changed files with 220 additions and 0 deletions

View file

@ -65,6 +65,11 @@ class Schema implements ConfigurationInterface
/**/->scalarNode('password')->defaultValue('libretime')->end()
->end()->end()
// Email schema
->arrayNode('email')
/**/->ignoreExtraKeys()
->end()
// Storage schema
->arrayNode('storage')->addDefaultsIfNotSet()->children()
/**/->scalarNode('path')->defaultValue('/srv/libretime/')