Skip to content

Commit 87b25ae

Browse files
committed
Removes app authorisation with verify profile route
1 parent ef7be6e commit 87b25ae

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@ target/
3434

3535
# Exclude sql files
3636
*.sql
37+
38+
config.docker.yaml

api/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func Start() {
5858
r.GET("/get-profile", HandlePostProfile)
5959

6060
// Verify User Session
61-
r.POST("/verify-session", middleware.HandleAppAuthorization, HandleVerifySession)
61+
r.POST("/verify-session", HandleVerifySession)
6262

6363
// Application Authorization
6464
r.POST("/verify-app", middleware.HandleAppAuthorization, func(c *gin.Context) {

0 commit comments

Comments
 (0)