Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
netvs-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Insights
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
scc-net
netvs
netvs-core
Commits
44248510
Commit
44248510
authored
6 months ago
by
!! Julian Keck (old Account; do not use) !!
Browse files
Options
Downloads
Patches
Plain Diff
ADD permission-check for hub workflows
parent
1475754f
No related branches found
No related tags found
No related merge requests found
Pipeline
#365745
failed
6 months ago
Stage: build
Stage: lint
Stage: e2e
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/src/views/tools/NETVSHub.vue
+17
-1
17 additions, 1 deletion
frontend/src/views/tools/NETVSHub.vue
with
17 additions
and
1 deletion
frontend/src/views/tools/NETVSHub.vue
+
17
−
1
View file @
44248510
...
...
@@ -25,6 +25,7 @@
import
Loading
from
'
@/components/Loading
'
import
HubService
from
'
@/api-services/hub.service
'
import
JSONTemplateTransactionGroupEditor
from
'
@/components/db-editor/JSONTemplateTransactionGroupEditor.vue
'
import
apiutil
from
'
@/util/apiutil
'
export
default
{
name
:
'
NETVSHub
'
,
...
...
@@ -38,7 +39,22 @@ export default {
methods
:
{
async
fetch
()
{
const
res
=
await
HubService
.
getIndex
()
this
.
templates
=
res
.
data
const
tpl
=
[]
for
(
const
t
of
res
.
data
)
{
let
has_perm
=
true
if
(
'
required_permissions
'
in
t
)
{
for
(
const
perm
of
t
.
required_permissions
)
{
if
(
!
apiutil
.
checkPermission
(
this
.
$store
.
state
,
perm
))
{
has_perm
=
false
break
}
}
}
if
(
has_perm
)
{
tpl
.
push
(
t
)
}
}
this
.
templates
=
tpl
},
async
loadTemplate
(
file_name
)
{
const
res
=
await
HubService
.
getTemplate
(
file_name
)
...
...
This diff is collapsed.
Click to expand it.
!! Julian Keck (old Account; do not use) !!
@julian-hiwi
mentioned in issue
#748 (closed)
·
6 months ago
mentioned in issue
#748 (closed)
mentioned in issue #748
Toggle commit list
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