Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchParapheur
Manage
Activity
Members
Plan
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maarch
MaarchParapheur
Commits
6eb389fb
Commit
6eb389fb
authored
2 years ago
by
Hamza HRAMCHI
Browse files
Options
Downloads
Patches
Plain Diff
FIX #20284 TIME 0:05 add url validator
parent
d0436282
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/frontend/app/administration/otp/otp.component.html
+1
-1
1 addition, 1 deletion
src/frontend/app/administration/otp/otp.component.html
src/frontend/app/service/functions.service.ts
+5
-0
5 additions, 0 deletions
src/frontend/app/service/functions.service.ts
with
6 additions
and
1 deletion
src/frontend/app/administration/otp/otp.component.html
+
1
−
1
View file @
6eb389fb
...
...
@@ -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"
...
...
This diff is collapsed.
Click to expand it.
src/frontend/app/service/functions.service.ts
+
5
−
0
View file @
6eb389fb
...
...
@@ -200,4 +200,9 @@ export class FunctionsService {
).
subscribe
();
});
}
isValidUrl
(
value
:
string
):
boolean
{
const
pattern
=
/^
(?:
http
(
s
)?
:
\/\/)?[\w
.-
]
+
(?:\.[\w\.
-
]
+
)
+
[\w\-\.
_~:
/
?#[
\]
@!
\$
&'
\(\)\*\+
,;=.
]
+$/
;
return
pattern
.
test
(
value
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment