23 lines
578 B
Go
23 lines
578 B
Go
package server
|
|
|
|
import (
|
|
"git.solsynth.dev/hydrogen/identity/pkg/database"
|
|
"git.solsynth.dev/hydrogen/identity/pkg/models"
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func getOtherUserinfo(c *fiber.Ctx) error {
|
|
alias := c.Params("alias")
|
|
|
|
var account models.Account
|
|
if err := database.C.
|
|
Where(&models.Account{Name: alias}).
|
|
Omit("sessions", "challenges", "factors", "events", "clients", "notifications", "notify_subscribers").
|
|
Preload("Profile").
|
|
First(&account).Error; err != nil {
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
}
|
|
|
|
return c.JSON(account)
|
|
}
|