cleaned code

This commit is contained in:
2026-03-28 18:26:51 +01:00
parent 75251601ae
commit 1f8a0e1584
50 changed files with 1652 additions and 719 deletions
+7 -1
View File
@@ -1,4 +1,4 @@
import { HttpParameterCodec } from '@angular/common/http';
import {HttpParameterCodec} from '@angular/common/http';
/**
* Custom HttpParameterCodec
@@ -8,12 +8,15 @@ export class CustomHttpParameterCodec implements HttpParameterCodec {
encodeKey(k: string): string {
return encodeURIComponent(k);
}
encodeValue(v: string): string {
return encodeURIComponent(v);
}
decodeKey(k: string): string {
return decodeURIComponent(k);
}
decodeValue(v: string): string {
return decodeURIComponent(v);
}
@@ -23,12 +26,15 @@ export class IdentityHttpParameterCodec implements HttpParameterCodec {
encodeKey(k: string): string {
return k;
}
encodeValue(v: string): string {
return v;
}
decodeKey(k: string): string {
return k;
}
decodeValue(v: string): string {
return v;
}