Stephen
- Total activity 138
- Last activity
- Member since
- Following 0 users
- Followed by 2 users
- Votes 0
- Subscriptions 75
Articles
Recent activity by Stephen-
Are the React components responsive and do they work in mobile? - Chat
Yes, all the React components are designed to be responsive and will scale to fit a mobile display.
-
Editing/updating and deleting messages - Chat
When a message is deleted from the client side in Stream, it is "soft deleted". This means that Stream will retain the message information in the channel, return the message, but mark it as "type: ...
-
Get unread count for Livestream channels - Chat
Unread counts are stored on channels for members of the channel. Users do not need to be members of Livestream type channels to read the messages, so they won't be members. Making a user a member o...
-
What happens to messages when a channel is deleted? - Chat
When you delete a channel we soft delete it and make all messages up to that point invisible. This way if you were creating the same channel again (same ID) you would not see the previous messages....
-
How to monitor 1 on 1 channels in the app - Chat
The easiest way to do this is to listen to a webhook for new messages in a channel via the 'messages.new' event. Messages can be added to a custom dashboard or passed through a moderation tool from...
-
I'm seeing channels in my ChannelList component that I'm not a member of - Chat
The most common cause for this is that permission checks have been disabled. They can be turned on via the dashboard, or the API: await client.updateAppSettings({ disable_auth_checks: true,});
-
How can I delete all data in the app? - Feeds
On the Stream dashboard, a user can choose to truncate all data in the app given that the app is in development mode.
-
What data can be added to collections?
Any data can be added to Stream collections to be accessed at any time or be used to enrich activities or users. Any JSON data can be added to Stream so long as it's given a collection name and dat...
-
How do I freeze a channel? - Chat
A channel can be set as frozen with the following command const update = await channel.update( { frozen: true },); Once a channel is set to frozen, it can be read but no messages can be sent to it ...
-
How to disable permission checks for development - Chat
In order to disable permission checks and allow development tokens during application development (never in a production build), there are a few steps you need to take, in any order. 1. Ensure you...