Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nmaas Portal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
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
nmaas
nmaas Portal
Merge requests
!196
Webhooks update
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Webhooks update
webhooks-update
into
develop
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
Karol Beyrowski
requested to merge
webhooks-update
into
develop
1 month ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
456aa364
2 commits,
1 month ago
2 files
+
12
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/app/appmarket/admin/webhook/webhook-details/webhook-details.component.html
+
3
−
3
Options
@@ -58,7 +58,7 @@
<div
class=
"col-sm-10"
>
<div
class=
"col-sm-10"
>
<input
type=
"text"
class=
"form-control"
id=
"token"
name=
"token"
[ngModelOptions]=
"{standalone: true}"
[(ngModel)]=
"webhook.tokenValue"
[disabled]=
"false"
>
[(ngModel)]=
"webhook.tokenValue"
[disabled]=
"false"
[required]=
"authRequired"
>
</div>
</div>
</div>
@@ -69,13 +69,13 @@
<div
class=
"col-sm-10"
>
<div
class=
"col-sm-10"
>
<input
type=
"text"
class=
"form-control"
id=
"auth"
name=
"auth"
[ngModelOptions]=
"{standalone: true}"
[(ngModel)]=
"webhook.authorizationHeader"
[disabled]=
"false"
>
[(ngModel)]=
"webhook.authorizationHeader"
[disabled]=
"false"
[required]=
"authRequired"
>
</div>
</div>
</div>
<div
class=
"flex justify-content-end"
>
<button
[disabled]=
"!webhookForm.form.valid"
type=
"submit"
class=
"btn btn-primary"
<button
[disabled]=
"!webhookForm.form.valid
|| !isFormValid()
"
type=
"submit"
class=
"btn btn-primary"
type=
"submit"
>
{{ 'PORTAL_CONFIGURATION.SUBMIT_BUTTON' | translate }}
</button>
</div>
Loading