mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
f8347af7b7
The functionality for sending/receiving funds directly from chat is currently not supported, both code and designs are outdated. This commit removes integration part but leaves ChatCommandsPopup component for potential future use. Closes: #12118
19 lines
476 B
QML
19 lines
476 B
QML
import QtQuick 2.15
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
property string createChatInitMessage: ""
|
|
property var createChatFileUrls: []
|
|
property string createChatStickerHashId: ""
|
|
property string createChatStickerPackId: ""
|
|
property string createChatStickerUrl: ""
|
|
|
|
function resetProperties() {
|
|
root.createChatInitMessage = ""
|
|
root.createChatFileUrls = []
|
|
root.createChatStickerHashId = ""
|
|
root.createChatStickerPackId = ""
|
|
}
|
|
}
|