summaryrefslogtreecommitdiff
path: root/session.go
diff options
context:
space:
mode:
Diffstat (limited to 'session.go')
-rw-r--r--session.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/session.go b/session.go
index e32041f..9d86bc7 100644
--- a/session.go
+++ b/session.go
@@ -5,8 +5,8 @@ import (
"errors"
"net/http"
- "stevenlr.com/timer/model"
- "stevenlr.com/timer/utils"
+ "stevenlr.com/locker/model"
+ "stevenlr.com/locker/utils"
)
func generateSessionId() (string, error) {
@@ -21,7 +21,7 @@ type Session struct {
UserId model.UUID
}
-const sessionCookieName = "timerSession"
+const sessionCookieName = "LockerSession"
func removeCookie(cookieName string, w http.ResponseWriter) {
cookie := http.Cookie{