From e9fb87b26f685e97deadd5ec1979f5807883c742 Mon Sep 17 00:00:00 2001 From: Adam French Date: Fri, 23 Jan 2026 12:05:14 +0000 Subject: [PATCH] test --- backend/handlers/handle_spotify.go | 2 ++ nginx/vue/src/views/Bookmarks.vue | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/backend/handlers/handle_spotify.go b/backend/handlers/handle_spotify.go index 7f0772c..c7c4e94 100644 --- a/backend/handlers/handle_spotify.go +++ b/backend/handlers/handle_spotify.go @@ -10,6 +10,8 @@ import ( ) func (store *Store) CompleteSpotifyAuth(ctx *gin.Context) { + print("COMPLETING AUTH") + state := ctx.Query("state") c := context.Background() // code := c.Query("code") diff --git a/nginx/vue/src/views/Bookmarks.vue b/nginx/vue/src/views/Bookmarks.vue index e92aff3..e2de2ba 100644 --- a/nginx/vue/src/views/Bookmarks.vue +++ b/nginx/vue/src/views/Bookmarks.vue @@ -180,6 +180,21 @@ const doc_links = [ link: "https://docs.python.org/3/", }, ]; + +const article_links = [ + { + name: "Go and GORM", + link: "https://medium.com/@chaewonkong/learn-go-understanding-and-implementing-foreign-keys-with-gorm-6d7608e1dbf6", + }, + { + name: "JWT Auth in GO", + link: "https://medium.com/monstar-lab-bangladesh-engineering/jwt-auth-in-go-dde432440924", + }, + { + name: "Websockets in GO", + link: "https://medium.com/@tanngontn/golang-gin-framework-with-normal-websocket-and-websocket-with-producer-is-rabbitmq-guide-93cad7d290f7", + }, +];