forked from Ivasoft/mattermost-mobile
[Gekidou] Groups + group-memberships deferred fetch (#6370)
* WIP * Actions updated to fetch remote first, and local on error * Groups fetch and save * PR Feedback: prepare vs store and undefined fix * Forgot to add file * Groups Mention WIP * Groups highlight! * Merge, PR Feedback * PR Feedback * PR Feedback: Try/Catch blocks * PR Feedback * Rebased with PR feedback * Exclusion fix, plus id order * Tidies up iterations * Loops updated * Update app/database/operator/server_data_operator/handlers/group.ts Co-authored-by: Avinash Lingaloo <avinashlng1080@gmail.com> * PR Feedback: Remove unnecessary prepare/store methods * Newline ESLint error * Extracts out id generation for group-associations * Batches if not fetchOnly Co-authored-by: Avinash Lingaloo <avinashlng1080@gmail.com>
This commit is contained in:
6
types/api/groups.d.ts
vendored
6
types/api/groups.d.ts
vendored
@@ -42,4 +42,8 @@ type GroupChannel = {
|
||||
update_at: number;
|
||||
}
|
||||
|
||||
type GroupMembership = UserProfile[]
|
||||
type GroupMembership = {
|
||||
id?: string;
|
||||
group_id: string;
|
||||
user_id: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user