blob: 7181ca7dbadd07b7f77b7365c496912f52e59853 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package user
import (
"github.com/labstack/echo/v4"
"go.neonxp.ru/framework/pkg/tpl"
"go.neonxp.ru/framework/pkg/utils"
)
func (*Handler) Profile(c echo.Context) error {
u := utils.GetUserCtx(c.Request().Context())
if u == nil {
return echo.ErrForbidden
}
return tpl.Profile(u).Render(c.Request().Context(), c.Response())
}
|