mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-03 22:55:04 -04:00
Qml app improved trusted nodes exchange
AddTrustedNode.qml support for plain certificate and node link import/export Move clipboard wrapper to it's own singleton ClipboardWrapper.qml with improved clipboard API
This commit is contained in:
parent
5c1ad36d2b
commit
7b070e482d
9 changed files with 141 additions and 62 deletions
|
@ -75,13 +75,15 @@ Item
|
|||
{
|
||||
contactsView.own_gxs_id = json.data[0].gxs_id
|
||||
contactsView.own_nick = json.data[0].name
|
||||
if(mainWindow.user_name.length === 0)
|
||||
mainWindow.user_name = json.data[0].name
|
||||
}
|
||||
else if (!settings.defaultIdentityCreated)
|
||||
{
|
||||
console.log("refreshOwnCallback(par)", "creating new identity" )
|
||||
settings.defaultIdentityCreated = true
|
||||
|
||||
var jsonData = { "name": mainWindow.pgp_name, "pgp_linked": false }
|
||||
var jsonData = { "name": mainWindow.user_name, "pgp_linked": false }
|
||||
rsApi.request(
|
||||
"/identity/create_identity",
|
||||
JSON.stringify(jsonData),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue