Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
11 changes: 11 additions & 0 deletions docs/godot/channels.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,17 @@ options.prop_value = "157"
var res := await Talo.channels.get_channels(options)
```

### Searching for channels

You can search for channels by name or owner identifier using the `search` option:

```gdscript
var options := Talo.channels.GetChannelsOptions.new()
options.page = 0
options.search = "search term"
var res := await Talo.channels.get_channels(options)
```

## Listing subscribed channels

<ScopeBadges scope='gameChannels' read />
Expand Down
9 changes: 9 additions & 0 deletions docs/unity/channels.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@ var options = new GetChannelsOptions() { page = page, propKey = "guildId", propV
var res = await Talo.Channels.GetChannels(options)
```

### Searching for channels

You can search for channels by name or owner identifier using the `search` option:

```csharp
var options = new GetChannelsOptions() { page = page, search = "search term" }
var res = await Talo.Channels.GetChannels(options)
```

## Listing subscribed channels

<ScopeBadges scope='gameChannels' read />
Expand Down