fix: vars not sanitized in roles_query

This commit is contained in:
Vikram Rangnekar
2020-04-18 17:46:40 -04:00
parent 4cf7956ff5
commit e6934cda02
4 changed files with 18 additions and 16 deletions

View File

@ -71,7 +71,7 @@ func (sg *SuperGraph) initConfig() error {
}
// Roles: validate and sanitize
c.RolesQuery = sanitize(c.RolesQuery)
c.RolesQuery = sanitizeVars(c.RolesQuery)
if len(c.RolesQuery) == 0 {
sg.log.Printf("WRN roles_query not defined: attribute based access control disabled")