Start cookie auth

This commit is contained in:
Amarpreet Minhas 2019-09-28 08:35:49 -04:00
parent deec023b7f
commit 0237c2796f
3 changed files with 9 additions and 6 deletions

View file

@ -1 +1,2 @@
#. Set up cookies
#. Implement comments

View file

@ -42,6 +42,7 @@ type Claims struct {
type JWT struct {
JWT string `json:"jwt"`
Username string `json:"username"`
}
func Init() {
@ -151,6 +152,7 @@ func signin(w http.ResponseWriter, r *http.Request) {
_, tokenString, _ := TokenAuth.Encode(claims)
token := JWT{
JWT: tokenString,
Username: creds.Username,
}
render.JSON(w, r, token)
}