blob: aeb987acfda97974ec8616fa8ca8d7acde4bcdd3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@using ArcaneLibs.Extensions
@using LibMatrix.EventTypes.Spec.State.RoomInfo
@inherits BaseTimelineItem
<i>
@Event.Sender created the room with room version @CreationEventContent.RoomVersion
@(CreationEventContent.Federate ?? true ? "and" : "without") federating with other servers.<br/>
This room is of type @(CreationEventContent.Type ?? "Untyped room (usually a chat room)")
</i>
<pre>
@Event.RawContent?.ToJson(indent: false)
</pre>
@code {
private RoomCreateEventContent CreationEventContent => Event.TypedContent as RoomCreateEventContent;
}
|