Skip to content

Commit 50f4502

Browse files
authored
Merge pull request #37 from qawl987/feat/r17-update
feat: add missing URI
2 parents 6ef66bb + 09d0dd7 commit 50f4502

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

Diff for: internal/sbi/api_sorprotection.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func (s *Server) getSorprotectionRoutes() []Route {
1919
{
2020
Name: "SupiUeSorPost",
2121
Method: http.MethodPost,
22-
Pattern: "/:supi/ue-sor",
22+
Pattern: "/:supi/ue-sor/generate-sor-data",
2323
APIFunc: s.HTTPSupiUeSorPost,
2424
},
2525
}

Diff for: internal/sbi/api_ueauthentication.go

+10
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ func (s *Server) getUeAuthenticationRoutes() []Route {
9797
Pattern: "/ue-authentications/deregister",
9898
APIFunc: s.HTTPUeAuthenticationsDeregisterPost,
9999
},
100+
{
101+
Name: "CreateRgAuthentications",
102+
Method: http.MethodPost,
103+
Pattern: "/rg-authentications",
104+
APIFunc: s.HTTPPostRgAuthentications,
105+
},
100106
}
101107
}
102108

@@ -225,3 +231,7 @@ func (s *Server) HTTPRgAuthenticationsPost(c *gin.Context) {
225231
func (s *Server) HTTPUeAuthenticationsDeregisterPost(c *gin.Context) {
226232
c.JSON(http.StatusNotImplemented, gin.H{})
227233
}
234+
235+
func (s *Server) HTTPPostRgAuthentications(c *gin.Context) {
236+
c.JSON(http.StatusNotImplemented, gin.H{})
237+
}

Diff for: internal/sbi/api_upuprotection.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func (s *Server) getUpuprotectionRoutes() []Route {
1919
{
2020
Name: "SupiUeUpuPost",
2121
Method: http.MethodPost,
22-
Pattern: "/:supi/ue-upu",
22+
Pattern: "/:supi/ue-upu/generate-upu-data",
2323
APIFunc: s.HTTPSupiUeUpuPost,
2424
},
2525
}

0 commit comments

Comments
 (0)