Skip to content
Snippets Groups Projects
Commit 6eb389fb authored by Hamza HRAMCHI's avatar Hamza HRAMCHI
Browse files

FIX #20284 TIME 0:05 add url validator

parent d0436282
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@
<ion-item text-center lines="none" style="position: sticky;bottom:0px;z-index:1;">
<div style="display: flex;align-items: center;justify-content: center;width: 100%;background: white;">
<ion-button type="submit" shape="round" size="large" fill="outline" color="primary"
[disabled]="!adminForm.form.valid">
[disabled]="!adminForm.form.valid || !functions.isValidUrl(connector.apiUri)">
<ion-label style="font-size: 13px;">{{'lang.validate' | translate}}</ion-label>
</ion-button>
<ion-button *ngIf="!creationMode" type="button" shape="round" size="large" fill="outline" color="danger"
......
......@@ -200,4 +200,9 @@ export class FunctionsService {
).subscribe();
});
}
isValidUrl(value: string): boolean {
const pattern = /^(?:http(s)?:\/\/)?[\w.-]+(?:\.[\w\.-]+)+[\w\-\._~:/?#[\]@!\$&'\(\)\*\+,;=.]+$/;
return pattern.test(value);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment