mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-08 16:20:28 +03:00
Add publish to directory toggle in room settings (#2279)
This commit is contained in:
parent
c16e060f73
commit
074a5e855d
3 changed files with 107 additions and 0 deletions
|
|
@ -8,6 +8,7 @@ import { RoomEncryption } from './RoomEncryption';
|
|||
import { RoomHistoryVisibility } from './RoomHistoryVisibility';
|
||||
import { RoomJoinRules } from './RoomJoinRules';
|
||||
import { RoomLocalAddresses, RoomPublishedAddresses } from './RoomAddress';
|
||||
import { RoomPublish } from './RoomPublish';
|
||||
import { RoomUpgrade } from './RoomUpgrade';
|
||||
|
||||
type GeneralProps = {
|
||||
|
|
@ -43,6 +44,7 @@ export function General({ requestClose }: GeneralProps) {
|
|||
<RoomJoinRules powerLevels={powerLevels} />
|
||||
<RoomHistoryVisibility powerLevels={powerLevels} />
|
||||
<RoomEncryption powerLevels={powerLevels} />
|
||||
<RoomPublish powerLevels={powerLevels} />
|
||||
</Box>
|
||||
<Box direction="Column" gap="100">
|
||||
<Text size="L400">Addresses</Text>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue