Renamed DisableValidation to DisableAuthentication

This commit is contained in:
Deluan 2020-01-09 11:48:09 -05:00 committed by Deluan Quintão
parent 0388d67817
commit ff5b91da54
4 changed files with 5 additions and 21 deletions

View file

@ -21,7 +21,7 @@ func Router() http.Handler {
r.Use(checkRequiredParameters)
// Add validation middleware if not disabled
if !conf.Sonic.DisableValidation {
if !conf.Sonic.DisableAuthentication {
r.Use(authenticate)
// TODO Validate version
}