chore: Make Node v18 the minimum supported version

This commit is contained in:
Joachim Van Herwegen
2023-06-12 11:49:55 +02:00
parent 43be71e4a2
commit e0c1baeb43
8 changed files with 23 additions and 16 deletions

View File

@@ -12,10 +12,11 @@ import { RoutingAuxiliaryIdentifierStrategy } from './RoutingAuxiliaryIdentifier
* or only the matching strategy if the input is an auxiliary identifier.
*/
export class RoutingAuxiliaryStrategy extends RoutingAuxiliaryIdentifierStrategy implements AuxiliaryStrategy {
protected readonly sources!: AuxiliaryStrategy[];
protected readonly sources: AuxiliaryStrategy[] = [];
public constructor(sources: AuxiliaryStrategy[]) {
super(sources);
this.sources = sources;
}
public usesOwnAuthorization(identifier: ResourceIdentifier): boolean {