forked from eclipse-edc/DataDashboard
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
79 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import {AbstractControl, ValidationErrors, ValidatorFn} from '@angular/forms'; | ||
|
||
/** | ||
* Validates that param string does not contain "=" or "&" characters | ||
* Temporary solution until EDC double encoding issue is resolved | ||
* See https://github.com/sovity/edc-extensions/issues/582 | ||
* @param control control | ||
*/ | ||
export const validQueryParam: ValidatorFn = ( | ||
control: AbstractControl, | ||
): ValidationErrors | null => { | ||
const value: string = control.value; | ||
if (value?.includes('=') || value?.includes('&')) { | ||
return {invalidQueryParam: true}; | ||
} | ||
|
||
return null; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters