remove http only

This commit is contained in:
kandrusyak
2023-07-25 01:24:55 +03:00
parent 31fcc2863d
commit 61610b1009

View File

@@ -45,7 +45,6 @@ func Login(c echo.Context) (err error) {
c.SetCookie(&http.Cookie{
Name: "accessToken",
Value: _token,
HttpOnly: true,
Path: "/",
})