add user uuid to context

This commit is contained in:
nquidox 2026-03-20 16:08:54 +03:00
parent efecc9d8a7
commit 13f93cd03e

View file

@ -29,6 +29,7 @@ func authMW(up user.Provider, auth authCheck.AuthChecker, serviceId int32) gin.H
}
c.Set("userId", userId)
c.Set("userUuid", userUuid)
c.Next()
}
}