We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef7be6e commit 87b25aeCopy full SHA for 87b25ae
.gitignore
@@ -34,3 +34,5 @@ target/
34
35
# Exclude sql files
36
*.sql
37
+
38
+config.docker.yaml
api/main.go
@@ -58,7 +58,7 @@ func Start() {
58
r.GET("/get-profile", HandlePostProfile)
59
60
// Verify User Session
61
- r.POST("/verify-session", middleware.HandleAppAuthorization, HandleVerifySession)
+ r.POST("/verify-session", HandleVerifySession)
62
63
// Application Authorization
64
r.POST("/verify-app", middleware.HandleAppAuthorization, func(c *gin.Context) {
0 commit comments