feat: profile api

This commit is contained in:
naiba
2024-11-03 23:28:10 +08:00
parent 94e7e47375
commit 6322c22b49
3 changed files with 19 additions and 0 deletions

View File

@@ -7,6 +7,23 @@ import (
"golang.org/x/crypto/bcrypt"
)
// Get profile
// @Summary Get profile
// @Security BearerAuth
// @Schemes
// @Description Get profile
// @Tags auth required
// @Produce json
// @Success 200 {object} model.CommonResponse[model.User]
// @Router /profile [get]
func getProfile(c *gin.Context) (*model.User, error) {
auth, ok := c.Get(model.CtxKeyAuthorizedUser)
if !ok {
return nil, singleton.Localizer.ErrorT("unauthorized")
}
return auth.(*model.User), nil
}
// List user
// @Summary List user
// @Security BearerAuth