IReceivedJoinRequestStore interface
This is a store that contains all join requests that other users have sent, requesting to join conversations where the current user is an owner.
Signature
export interface IReceivedJoinRequestStore extends IStore<IReceivedJoinRequest>
export declare namespace IReceivedJoinRequestStore
Remarks
A join request can be accepted by adding the requesting user as a member in the conversaion.
When a join request is accepted by any eligible receiver, or explicitly ignored by the current user, the request is removed from this collection.
Methods
Method | Description |
---|---|
getJoinRequests() | Get all join requests to conversations where the current user is an owner |
ignoreRequestToJoinConversation(id) | Ignore a join request |
Variables
Variable | Description |
---|---|
TypeTag |