Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vlass Manager UI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
Vlass Manager UI
Commits
67c2abdc
Commit
67c2abdc
authored
1 year ago
by
Daniel Nemergut
Browse files
Options
Downloads
Patches
Plain Diff
Made a settings button for the SECI auto deletion
parent
e6d2c28b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!25
Merge 2.4.3 UI to main
,
!20
WS-1574 SECI auto delete settings button
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/model/setting.ts
+1
-0
1 addition, 0 deletions
src/app/model/setting.ts
src/app/settings/settings.component.html
+17
-0
17 additions, 0 deletions
src/app/settings/settings.component.html
with
18 additions
and
0 deletions
src/app/model/setting.ts
+
1
−
0
View file @
67c2abdc
...
...
@@ -3,6 +3,7 @@ export class Setting {
allowJobDeletion
:
boolean
;
allowProductDeletion
:
boolean
;
allowAutomaticPims
:
boolean
;
allowSeciPimsDeletion
:
boolean
;
}
export
class
QueueSetting
{
...
...
This diff is collapsed.
Click to expand it.
src/app/settings/settings.component.html
+
17
−
0
View file @
67c2abdc
...
...
@@ -56,6 +56,23 @@
<h5
class=
"m-0"
>
Allow Automatic PIMs?
</h5>
<p>
Allows automatic PIMs-splitting on Quicklook-calibration ingestion through this interface
</p>
</div>
<div
class=
"col-1"
></div>
<div
class=
"col-auto"
>
<div
class=
"btn-group"
>
<button
type=
"button"
class=
"btn btn-lg"
(click)=
"updateSettings('allowSeciPimsDeletion', true)"
[ngClass]=
"settings.allowSeciPimsDeletion ? 'btn-success active' : 'btn-outline-success'"
>
Yes
</button>
<button
type=
"button"
class=
"btn btn-lg"
(click)=
"updateSettings('allowSeciPimsDeletion', false)"
[ngClass]=
"!settings.allowSeciPimsDeletion ? 'btn-danger active' : 'btn-outline-danger'"
>
No
</button>
</div>
</div>
<div
class=
"col"
>
<h5
class=
"m-0"
>
Allow Automatic SECI PIMs Deletion?
</h5>
<p>
Allows automatic PIMs deletion upon SECI workflow completion through this interface
</p>
</div>
</div>
</ng-container>
...
...
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