We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To be able to create unfederated spaces using Element
To make it easier to create a more secured section on my otherwise federated server
Add an option in the space creation modal to make the space unfederated ("m.federate": false) similar to the room creation modal
"m.federate": false
You can manually call the client-server API, but this is not very convenient or user-friendly
curl --request POST \ --url 'https://matrix.your-server.tld/_matrix/client/r0/createRoom' \ --header 'Authorization: Bearer your_accessToken' \ --header 'content-type: application/json' \ --data '{ "name": "Example unfederated, private space", "topic": "Optionally add a topic here", "preset": "private_chat", "visibility": "private", "power_level_content_override": { "events_default": 100, "invite": 50 }, "creation_content": { "type": "m.space", "m.federate": false }, "initial_state": [ { "type": "m.room.guest_access", "state_key": "", "content": { "guest_access": "can_join" } }, { "type": "m.room.history_visibility", "content": { "history_visibility": "invited" } } ] }'
Element does handle/support unfederated spaces other than creating them
Optionally, child rooms created under unfederated spaces should default to also be unfederated.
The text was updated successfully, but these errors were encountered:
Duplicate of element-hq/element-meta#741
Sorry, something went wrong.
No branches or pull requests
Your use case
What would you like to do?
To be able to create unfederated spaces using Element
Why would you like to do it?
To make it easier to create a more secured section on my otherwise federated server
How would you like to achieve it?
Add an option in the space creation modal to make the space unfederated (
"m.federate": false
) similar to the room creation modalHave you considered any alternatives?
You can manually call the client-server API, but this is not very convenient or user-friendly
Additional context
Element does handle/support unfederated spaces other than creating them
Optionally, child rooms created under unfederated spaces should default to also be unfederated.
The text was updated successfully, but these errors were encountered: