|
|
|
@ -37628,7 +37628,8 @@ var TextSecureServer = (function() {
|
|
|
|
|
keys : "v2/keys",
|
|
|
|
|
signed : "v2/keys/signed",
|
|
|
|
|
messages : "v1/messages",
|
|
|
|
|
attachment : "v1/attachments"
|
|
|
|
|
attachment : "v1/attachments",
|
|
|
|
|
profile : "v1/profile"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function TextSecureServer(url, ports, username, password) {
|
|
|
|
@ -37696,6 +37697,13 @@ var TextSecureServer = (function() {
|
|
|
|
|
throw e;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getProfile: function(number) {
|
|
|
|
|
return this.ajax({
|
|
|
|
|
call : 'profile',
|
|
|
|
|
httpType : 'GET',
|
|
|
|
|
urlParameters : '/' + number,
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
requestVerificationSMS: function(number) {
|
|
|
|
|
return this.ajax({
|
|
|
|
|
call : 'accounts',
|
|
|
|
|