mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
d763a09cac
- Removed redundant `community` word in some files from: `controls`, `views`, `popups`, `helpers ` and `panels` folders. - Updated storybook. - Updated squish files. Closes #6204
37 lines
940 B
QML
37 lines
940 B
QML
import QtQuick 2.14
|
|
import QtQuick.Controls 2.14
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Popups.Dialog 0.1
|
|
|
|
import AppLayouts.Communities.panels 1.0
|
|
|
|
StatusDialog {
|
|
id: root
|
|
|
|
property string channelName
|
|
property alias viewOnlyHoldingsModel: overlayPanel.viewOnlyHoldingsModel
|
|
property alias viewAndPostHoldingsModel: overlayPanel.viewAndPostHoldingsModel
|
|
property alias moderateHoldingsModel: overlayPanel.moderateHoldingsModel
|
|
|
|
property alias assetsModel: overlayPanel.assetsModel
|
|
property alias collectiblesModel: overlayPanel.collectiblesModel
|
|
|
|
title: qsTr("Token permissions for %1 channel").arg(root.channelName)
|
|
footer.visible: false
|
|
|
|
padding: 0
|
|
|
|
StatusScrollView {
|
|
anchors.fill: parent
|
|
|
|
JoinPermissionsOverlayPanel {
|
|
id: overlayPanel
|
|
|
|
joinCommunity: false
|
|
channelName: root.channelName
|
|
showOnlyPanels: true
|
|
}
|
|
}
|
|
}
|