mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
Only make the initial space rooms suggested by default
This commit is contained in:
parent
e2468854f6
commit
d3ba33172b
@ -517,6 +517,7 @@ const SpaceSetupFirstRooms = ({ space, title, description, onFinished }) => {
|
||||
andView: false,
|
||||
inlineErrors: true,
|
||||
parentSpace: space,
|
||||
suggested: true,
|
||||
});
|
||||
}));
|
||||
onFinished(filteredRoomNames.length > 0);
|
||||
|
@ -62,6 +62,8 @@ export interface IOpts {
|
||||
roomType?: RoomType | string;
|
||||
historyVisibility?: HistoryVisibility;
|
||||
parentSpace?: Room;
|
||||
// contextually only makes sense if parentSpace is specified, if true then will be added to parentSpace as suggested
|
||||
suggested?: boolean;
|
||||
joinRule?: JoinRule;
|
||||
}
|
||||
|
||||
@ -228,7 +230,7 @@ export default async function createRoom(opts: IOpts): Promise<string | null> {
|
||||
}
|
||||
}).then(() => {
|
||||
if (opts.parentSpace) {
|
||||
return SpaceStore.instance.addRoomToSpace(opts.parentSpace, roomId, [client.getDomain()], true);
|
||||
return SpaceStore.instance.addRoomToSpace(opts.parentSpace, roomId, [client.getDomain()], opts.suggested);
|
||||
}
|
||||
if (opts.associatedWithCommunity) {
|
||||
return GroupStore.addRoomToGroup(opts.associatedWithCommunity, roomId, false);
|
||||
|
Loading…
Reference in New Issue
Block a user