Realm post include public realm

This commit is contained in:
LittleSheep 2025-03-16 12:13:48 +08:00
parent 1c927122c2
commit 1b4d7822ed
3 changed files with 5 additions and 2 deletions

2
go.mod
View File

@ -6,7 +6,7 @@ require (
git.solsynth.dev/hypernet/insight v0.0.0-20250129172551-974266b2c1d2
git.solsynth.dev/hypernet/nexus v0.0.0-20250301065153-8ac88413e0e1
git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47
git.solsynth.dev/hypernet/passport v0.0.0-20250315083747-32e91e26013c
git.solsynth.dev/hypernet/passport v0.0.0-20250316041213-ecaace561632
git.solsynth.dev/hypernet/pusher v0.0.0-20250216145944-5fb769823a88
git.solsynth.dev/hypernet/wallet v0.0.0-20250129150034-87b94cdb5488
github.com/dgraph-io/ristretto v0.2.0

2
go.sum
View File

@ -41,6 +41,8 @@ git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47 h1:fvu+bN
git.solsynth.dev/hypernet/paperclip v0.0.0-20250310151112-1d866f317f47/go.mod h1:jvxq2qftz2v72x+24+cTFJdQKr9eHQTdk3KVR7cx36s=
git.solsynth.dev/hypernet/passport v0.0.0-20250315083747-32e91e26013c h1:XB8EBX34WB2skmjaVFot5IlxKF2qFZ2SueG/Y9SiJ6Y=
git.solsynth.dev/hypernet/passport v0.0.0-20250315083747-32e91e26013c/go.mod h1:k7MZQWYBpxlk3g9bx0HTh5C3m+MG/wr0hAiRM/VyAqs=
git.solsynth.dev/hypernet/passport v0.0.0-20250316041213-ecaace561632 h1:rO0aFXOdNIHUx13UE3Q2RjeTdgouIOCMYlOycgdDUNg=
git.solsynth.dev/hypernet/passport v0.0.0-20250316041213-ecaace561632/go.mod h1:+G1SHAmVGGjsmuCllZpH3jgpYGaYu/JzcXdgj6RQTOY=
git.solsynth.dev/hypernet/pusher v0.0.0-20250216145944-5fb769823a88 h1:2HEENe9KUrdaJeNBzx9lsuXQGyzWqCgnLTKQnr8xFr8=
git.solsynth.dev/hypernet/pusher v0.0.0-20250216145944-5fb769823a88/go.mod h1:ildzMtLagNsLK0Rkw4Hgk2TrrwqZnjwJIUx0MNZwcDY=
git.solsynth.dev/hypernet/wallet v0.0.0-20250129150034-87b94cdb5488 h1:/9Ol+PfDQFAYtHo0kk6sxqiEsZ6epb6yUEsZJxy14Mk=

View File

@ -94,7 +94,8 @@ func FilterPostWithUserContext(c *fiber.Ctx, tx *gorm.DB, user *authm.Account) *
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
defer cancel()
resp, err := ac.ListAvailableRealm(ctx, &aproto.LookupUserRealmRequest{
UserId: uint64(user.ID),
UserId: uint64(user.ID),
IncludePublic: lo.ToPtr(true),
})
if err == nil {
realmList = lo.Map(resp.GetData(), func(item *aproto.RealmInfo, index int) uint {