Use the same username for all pads
This commit is contained in:
parent
73d5ea967b
commit
79884e2400
@ -186,7 +186,7 @@ define([
|
||||
name: myUserName
|
||||
};
|
||||
addToUserList(myData);
|
||||
Cryptpad.setPadAttribute('username', myUserName, function (err, data) {
|
||||
Cryptpad.setAttribute('username', myUserName, function (err, data) {
|
||||
if (err) {
|
||||
console.log("Couldn't set username");
|
||||
console.error(err);
|
||||
@ -197,7 +197,7 @@ define([
|
||||
};
|
||||
|
||||
var getLastName = function (cb) {
|
||||
Cryptpad.getPadAttribute('username', function (err, userName) {
|
||||
Cryptpad.getAttribute('username', function (err, userName) {
|
||||
cb(err, userName || '');
|
||||
});
|
||||
};
|
||||
|
||||
@ -318,6 +318,12 @@ define([
|
||||
cb(err, data);
|
||||
});
|
||||
};
|
||||
var setAttribute = common.setAttribute = function (attr, value, cb, legacy) {
|
||||
getStore(legacy).set(["cryptpad", attr].join('.'), value, function (err, data) {
|
||||
cb(err, data);
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
// STORAGE
|
||||
var getPadAttribute = common.getPadAttribute = function (attr, cb, legacy) {
|
||||
@ -325,6 +331,12 @@ define([
|
||||
cb(err, data);
|
||||
});
|
||||
};
|
||||
var getAttribute = common.getAttribute = function (attr, cb, legacy) {
|
||||
getStore(legacy).get(["cryptpad", attr].join('.'), function (err, data) {
|
||||
cb(err, data);
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
// STORAGE
|
||||
/* fetch and migrate your pad history from localStorage */
|
||||
|
||||
@ -269,7 +269,7 @@ define([
|
||||
};
|
||||
|
||||
var getLastName = function (cb) {
|
||||
Cryptpad.getPadAttribute('username', function (err, userName) {
|
||||
Cryptpad.getAttribute('username', function (err, userName) {
|
||||
cb(err, userName || '');
|
||||
});
|
||||
};
|
||||
@ -287,7 +287,7 @@ define([
|
||||
addToUserList(myData);
|
||||
editor.fire('change');
|
||||
|
||||
Cryptpad.setPadAttribute('username', newName, function (err, data) {
|
||||
Cryptpad.setAttribute('username', newName, function (err, data) {
|
||||
if (err) {
|
||||
console.error("Couldn't set username");
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user