diff --git a/app/server/src/db/sessionStore.ts b/app/server/src/db/sessionStore.ts index 636fc3ce7..d0921e0fe 100644 --- a/app/server/src/db/sessionStore.ts +++ b/app/server/src/db/sessionStore.ts @@ -69,6 +69,10 @@ export class SessionStore { await this._redis.hset(this.sessionKey("label"), id, label); } + async getSessionLabel(id: string) { + await this._redis.hget(this.sessionKey("label"), id); + } + async getSession(id: string) { return this._redis.hget(this.sessionKey("data"), id); } diff --git a/app/static/src/app/components/WodinSession.vue b/app/static/src/app/components/WodinSession.vue index 9f4a3c417..eee95ffd2 100644 --- a/app/static/src/app/components/WodinSession.vue +++ b/app/static/src/app/components/WodinSession.vue @@ -1,5 +1,5 @@