Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GÉANT Service Orchestrator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
GÉANT Service Orchestrator
Merge requests
!149
Add API key authentication for routes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add API key authentication for routes
feature/NAT-416-add-api-key-auth
into
develop
Overview
9
Commits
3
Pipelines
10
Changes
6
Merged
Mohammad Torkashvand
requested to merge
feature/NAT-416-add-api-key-auth
into
develop
1 year ago
Overview
9
Commits
3
Pipelines
10
Changes
6
Expand
0
0
Merge request reports
Compare
develop
version 9
016f2601
1 year ago
version 8
5a54361a
1 year ago
version 7
3d45fdd5
1 year ago
version 6
36fde4d8
1 year ago
version 5
32cd05bd
1 year ago
version 4
1a389108
1 year ago
version 3
e275b17c
1 year ago
version 2
aa58da11
1 year ago
version 1
de4384d6
1 year ago
develop (base)
and
latest version
latest version
9eb247d2
3 commits,
1 year ago
version 9
016f2601
3 commits,
1 year ago
version 8
5a54361a
2 commits,
1 year ago
version 7
3d45fdd5
2 commits,
1 year ago
version 6
36fde4d8
1 commit,
1 year ago
version 5
32cd05bd
1 commit,
1 year ago
version 4
1a389108
1 commit,
1 year ago
version 3
e275b17c
1 commit,
1 year ago
version 2
aa58da11
1 commit,
1 year ago
version 1
de4384d6
1 commit,
1 year ago
6 files
+
47
−
4
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
gso/api/v1/subscriptions.py
+
2
−
2
Options
@@ -8,13 +8,13 @@ from orchestrator.domain import SubscriptionModel
@@ -8,13 +8,13 @@ from orchestrator.domain import SubscriptionModel
from
orchestrator.schemas
import
SubscriptionDomainModelSchema
from
orchestrator.schemas
import
SubscriptionDomainModelSchema
from
orchestrator.services.subscriptions
import
build_extended_domain_model
from
orchestrator.services.subscriptions
import
build_extended_domain_model
from
gso.auth.
security
import
opa_security_default
from
gso.auth.
api_key_auth
import
get_api_key
from
gso.services.subscriptions
import
get_active_router_subscriptions
from
gso.services.subscriptions
import
get_active_router_subscriptions
router
=
APIRouter
(
router
=
APIRouter
(
prefix
=
"
/subscriptions
"
,
prefix
=
"
/subscriptions
"
,
tags
=
[
"
Subscriptions
"
],
tags
=
[
"
Subscriptions
"
],
dependencies
=
[
Depends
(
opa_security_default
)],
dependencies
=
[
Depends
(
get_api_key
)],
)
)
Loading