Compare commits

...

1 Commits

Author SHA1 Message Date
Joshua Goins
cbdeb9e18a List the room creators under Room Advanced Settings
For room versions under 12, this was only possible by looking at the
state event under developer tools. (For >=12 we display this instead of
power level, so it's more obvious.)

Right now it only displays the user IDs which is more than good enough
for my purposes.

See #707
2026-02-20 16:31:12 -05:00

View File

@@ -70,6 +70,21 @@ FormCard.FormCardPage {
}
}
}
FormCard.FormHeader {
title: i18nc("@title:group", "Room Creators")
}
FormCard.FormCard {
Repeater {
model: root.room.creatorIds
delegate: FormCard.FormTextDelegate {
id: creatorUserDelegate
text: modelData
textItem.textFormat: Text.PlainText
}
}
}
property Kirigami.Dialog roomUpgradeDialog: Kirigami.Dialog {
id: roomUpgradeDialog