Skip to content

Commit

Permalink
change proof-params old to private
Browse files Browse the repository at this point in the history
  • Loading branch information
chabanyknikita committed Sep 2, 2024
1 parent 2253831 commit f3097cd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/service/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ func (s *service) router(cfg config.Config) chi.Router {
)
r.Route("/integrations/verificator-svc", func(r chi.Router) {
r.Route("/private", func(r chi.Router) {
r.Get("/proof-parameters", handlers.GetProofParameters)
r.Get("/get-proof/{user_id}", handlers.GetProofByUserID)
r.Get("/verification-status/{user_id}", handlers.GetVerificationStatusById)
r.Delete("/delete-user/{user_id}", handlers.DeleteUser)
Expand All @@ -32,8 +33,6 @@ func (s *service) router(cfg config.Config) chi.Router {
r.Route("/public", func(r chi.Router) {
r.Post("/callback/{user_id}", handlers.VerificationCallback)
r.Get("/proof-params/{user_id_hash}", handlers.GetProofParamsById)
r.Get("/proof-parameters", handlers.GetProofParameters)

})

})
Expand Down

0 comments on commit f3097cd

Please sign in to comment.