File tree 3 files changed +12
-2
lines changed
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ func (s *Server) getSorprotectionRoutes() []Route {
19
19
{
20
20
Name : "SupiUeSorPost" ,
21
21
Method : http .MethodPost ,
22
- Pattern : "/:supi/ue-sor" ,
22
+ Pattern : "/:supi/ue-sor/generate-sor-data " ,
23
23
APIFunc : s .HTTPSupiUeSorPost ,
24
24
},
25
25
}
Original file line number Diff line number Diff line change @@ -97,6 +97,12 @@ func (s *Server) getUeAuthenticationRoutes() []Route {
97
97
Pattern : "/ue-authentications/deregister" ,
98
98
APIFunc : s .HTTPUeAuthenticationsDeregisterPost ,
99
99
},
100
+ {
101
+ Name : "CreateRgAuthentications" ,
102
+ Method : http .MethodPost ,
103
+ Pattern : "/rg-authentications" ,
104
+ APIFunc : s .HTTPPostRgAuthentications ,
105
+ },
100
106
}
101
107
}
102
108
@@ -225,3 +231,7 @@ func (s *Server) HTTPRgAuthenticationsPost(c *gin.Context) {
225
231
func (s * Server ) HTTPUeAuthenticationsDeregisterPost (c * gin.Context ) {
226
232
c .JSON (http .StatusNotImplemented , gin.H {})
227
233
}
234
+
235
+ func (s * Server ) HTTPPostRgAuthentications (c * gin.Context ) {
236
+ c .JSON (http .StatusNotImplemented , gin.H {})
237
+ }
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ func (s *Server) getUpuprotectionRoutes() []Route {
19
19
{
20
20
Name : "SupiUeUpuPost" ,
21
21
Method : http .MethodPost ,
22
- Pattern : "/:supi/ue-upu" ,
22
+ Pattern : "/:supi/ue-upu/generate-upu-data " ,
23
23
APIFunc : s .HTTPSupiUeUpuPost ,
24
24
},
25
25
}
You can’t perform that action at this time.
0 commit comments