19 lines
389 B
Go
19 lines
389 B
Go
|
package v1
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"git.kolaente.de/konrad/list/models"
|
||
|
"github.com/dgrijalva/jwt-go"
|
||
|
"github.com/labstack/echo"
|
||
|
)
|
||
|
|
||
|
// CheckToken checks prints a message if the token is valid or not. Currently only used for testing pourposes.
|
||
|
func CheckToken(c echo.Context) error {
|
||
|
|
||
|
user := c.Get("user").(*jwt.Token)
|
||
|
|
||
|
fmt.Println(user.Valid)
|
||
|
|
||
|
return c.JSON(418, models.Message{"🍵"})
|
||
|
}
|