Merge remote-tracking branch 'origin/develop' into group-lookup

This commit is contained in:
Alex Gleason
2023-04-17 15:52:43 -04:00
56 changed files with 1079 additions and 169 deletions

View File

@@ -25,7 +25,7 @@ describe('normalizeInstance()', () => {
},
groups: {
max_characters_name: 50,
max_characters_description: 100,
max_characters_description: 160,
},
},
description: '',

View File

@@ -37,7 +37,7 @@ export const InstanceRecord = ImmutableRecord({
}),
groups: ImmutableMap<string, number>({
max_characters_name: 50,
max_characters_description: 100,
max_characters_description: 160,
}),
}),
description: '',

View File

@@ -20,7 +20,7 @@ import type { ReducerAccount } from 'soapbox/reducers/accounts';
import type { Account, Attachment, Card, Emoji, Group, Mention, Poll, EmbeddedEntity } from 'soapbox/types/entities';
export type StatusApprovalStatus = 'pending' | 'approval' | 'rejected';
export type StatusVisibility = 'public' | 'unlisted' | 'private' | 'direct' | 'self';
export type StatusVisibility = 'public' | 'unlisted' | 'private' | 'direct' | 'self' | 'group';
export type EventJoinMode = 'free' | 'restricted' | 'invite';
export type EventJoinState = 'pending' | 'reject' | 'accept';