Merge remote-tracking branch 'origin/develop' into group-lookup
This commit is contained in:
@@ -25,7 +25,7 @@ describe('normalizeInstance()', () => {
|
||||
},
|
||||
groups: {
|
||||
max_characters_name: 50,
|
||||
max_characters_description: 100,
|
||||
max_characters_description: 160,
|
||||
},
|
||||
},
|
||||
description: '',
|
||||
|
||||
@@ -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: '',
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user