changed group keys to have string arrays

This commit is contained in:
Christopher Bisset 2022-08-18 13:26:15 +10:00
parent 42e117deb1
commit 60697dcc6a

View file

@ -15,7 +15,7 @@ export class Device {
}
export class ACL {
public groups: {[key: string]: string} = {}
public groups: {[key: string]: [string]} = {}
public constructor(init?: Partial<Route>) {
Object.assign(this, init);