-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge: Merge branch 'origin/plugins-store' into plugins-store
- Loading branch information
Showing
19 changed files
with
379 additions
and
46 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
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
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
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
4 changes: 4 additions & 0 deletions
4
...ttings/create-pipeline/pipeline-input/pipeline-git-input/pipeline-git-input.component.css
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,4 @@ | ||
/* | ||
* SPDX-FileCopyrightText: Copyright DB Netz AG and the capella-collab-manager contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ |
39 changes: 39 additions & 0 deletions
39
...tings/create-pipeline/pipeline-input/pipeline-git-input/pipeline-git-input.component.html
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,39 @@ | ||
<!-- | ||
~ SPDX-FileCopyrightText: Copyright DB Netz AG and the capella-collab-manager contributors | ||
~ SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
|
||
Please select a Git model from the list: | ||
<mat-selection-list [multiple]="false"> | ||
<mat-list-option | ||
[(ngModel)]="selectedGitModel" | ||
*ngFor="let gitModel of gitModelService.gitModels$ | async" | ||
[value]="gitModel.id" | ||
> | ||
<div mat-line>Git model {{ gitModel.id }}</div> | ||
<div mat-line> | ||
URL '{{ gitModel.path }}', revision '{{ gitModel.revision }}' | ||
</div> | ||
</mat-list-option> | ||
</mat-selection-list> | ||
|
||
<div class="mt-separator border p-2"> | ||
The pipeline will get access to the following information of the selected Git | ||
model: | ||
<ul class="list-disc pl-10"> | ||
<li *ngFor="let mapping of gitInput?.mapping | keyvalue"> | ||
{{ mapping.key }} | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<mat-checkbox class="mt-separator" | ||
>I confirm that I trust the pipeline authors and confirm that the pipeline | ||
should have access to the above values. | ||
</mat-checkbox> | ||
|
||
<div class="mt-separator"> | ||
<button [disabled]="selectedGitModel === undefined" mat-stroked-button> | ||
Submit and continue | ||
</button> | ||
</div> |
Oops, something went wrong.