Skip to content

Commit

Permalink
fix: type error & update api version
Browse files Browse the repository at this point in the history
  • Loading branch information
a3828162 committed Oct 20, 2024
1 parent 6db4653 commit 29ebf2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/sbi/api_ueauthentication.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func (s *Server) UEAUTwoLayerPathHandlerFunc(c *gin.Context) {
}

func (s *Server) UEAUThreeLayerPathHandlerFunc(c *gin.Context) {
twoLayer := c.Param("subscriptionId")
twoLayer := c.Param("twoLayer")

// for "/:supi/auth-events/:authEventId"
if twoLayer == "auth-events" && http.MethodPut == c.Request.Method {
Expand Down
2 changes: 1 addition & 1 deletion pkg/factory/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const (
UdmAuthResUriPrefix = "/nudm-auth/v1"
UdmfUpuprotectionResUriPrefix = "/nudm-upuprotection/v1"
UdmEcmResUriPrefix = "/nudm-ecm/v1"
UdmSdmResUriPrefix = "/nudm-sdm/v1"
UdmSdmResUriPrefix = "/nudm-sdm/v2"
UdmEeResUriPrefix = "/nudm-ee/v1"
UdmDrResUriPrefix = "/nudr-dr/v1"
UdmUecmResUriPrefix = "/nudm-uecm/v1"
Expand Down

0 comments on commit 29ebf2d

Please sign in to comment.