Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new runtime function to get a list of user's friend status #163

Merged
merged 2 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project are documented below.
The format is based on [keep a changelog](http://keepachangelog.com) and this project uses [semantic versioning](http://semver.org).

## [Unreleased]
### Added
- Add new runtime function to get a list of user's friend status.

## [1.34.0] - 2024-10-21
### Added
Expand Down
1 change: 1 addition & 0 deletions runtime/runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -1058,6 +1058,7 @@ type NakamaModule interface {

UsersGetId(ctx context.Context, userIDs []string, facebookIDs []string) ([]*api.User, error)
UsersGetUsername(ctx context.Context, usernames []string) ([]*api.User, error)
UsersGetFriendStatus(ctx context.Context, userID string, userIDs []string) ([]*api.Friend, error)
UsersGetRandom(ctx context.Context, count int) ([]*api.User, error)
UsersBanId(ctx context.Context, userIDs []string) error
UsersUnbanId(ctx context.Context, userIDs []string) error
Expand Down
Loading