Skip to content

Commit

Permalink
Merge pull request #74 from EVOLVED-5G/fix_space_at_json
Browse files Browse the repository at this point in the history
Remove space before SUBSCRIBE_NOTIFY at capif jsons
  • Loading branch information
JFrgs authored Apr 25, 2023
2 parents 2f11171 + 3db4083 commit 3fed7f9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
"resources": [
{
"resourceName": "QOS_SUBSCRIPTIONS",
"commType": " SUBSCRIBE_NOTIFY",
"uri": "/{scsAsId}/subscriptions",
"commType": "SUBSCRIBE_NOTIFY",
"uri": "/scsAsId001/subscriptions",
"custOpName": "http_post",
"operations": ["GET","POST"],
"description": "Endpoint to manage monitoring subscriptions"
},
{
"resourceName": "QOS_SUBSCRIPTION_SINGLE",
"commType": " SUBSCRIBE_NOTIFY",
"uri": "/{scsAsId}/subscriptions/{subscriptionId}",
"commType": "SUBSCRIBE_NOTIFY",
"uri": "/scsAsId001/subscriptions/subscriptionId001",
"custOpName": "http_get",
"operations": ["GET","PUT","DELETE"],
"description": "Endpoint to manage single subscription"
Expand All @@ -39,12 +39,12 @@
],
"protocol": "HTTP_1_1",
"dataFormat": "JSON",
"securityMethods": ["Oauth", "PSK"],
"securityMethods": ["OAUTH", "PSK"],
"interfaceDescriptions": [
{
"ipv4Addr": "127.0.0.1",
"port": 8888,
"securityMethods": ["Oauth"]
"securityMethods": ["OAUTH"]
}
]
}
Expand Down
12 changes: 6 additions & 6 deletions backend/app/app/core/capif_files/service_monitoring_event.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
"resources": [
{
"resourceName": "MONITORING_SUBSCRIPTIONS",
"commType": " SUBSCRIBE_NOTIFY",
"uri": "/{scsAsId}/subscriptions",
"commType": "SUBSCRIBE_NOTIFY",
"uri": "/scsAsId001/subscriptions",
"custOpName": "http_post",
"operations": ["GET","POST"],
"description": "Endpoint to manage monitoring subscriptions"
},
{
"resourceName": "MONITORING_SUBSCRIPTION_SINGLE",
"commType": " SUBSCRIBE_NOTIFY",
"uri": "/{scsAsId}/subscriptions/{subscriptionId}",
"commType": "SUBSCRIBE_NOTIFY",
"uri": "/scsAsId001/subscriptions/subscriptionId001",
"custOpName": "http_get",
"operations": ["GET","PUT","DELETE"],
"description": "Endpoint to manage single subscription"
Expand All @@ -39,12 +39,12 @@
],
"protocol": "HTTP_1_1",
"dataFormat": "JSON",
"securityMethods": ["Oauth", "PSK"],
"securityMethods": ["OAUTH", "PSK"],
"interfaceDescriptions": [
{
"ipv4Addr": "127.0.0.1",
"port": 8888,
"securityMethods": ["Oauth"]
"securityMethods": ["OAUTH"]
}
]
}
Expand Down

0 comments on commit 3fed7f9

Please sign in to comment.