aboutsummaryrefslogtreecommitdiff
path: root/lib/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/app.js')
-rw-r--r--lib/app.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/app.js b/lib/app.js
index d0ff7f4..c841ab0 100644
--- a/lib/app.js
+++ b/lib/app.js
@@ -1337,7 +1337,7 @@ App.prototype.getLinks = function (id) {
})
}
-App.prototype.getLinks2 = function (id, relOrType) {
+App.prototype.getLinksBy = function (id, relOrType) {
return this.sbot.backlinks ? this.sbot.backlinks.read({
query: [
{$filter: {
@@ -1357,6 +1357,16 @@ App.prototype.getLinks2 = function (id, relOrType) {
})
}
+App.prototype.getLinks3 = function (id, author, rel) {
+ return this.sbotLinks({
+ dest: id,
+ source: author,
+ rel: rel,
+ meta: false,
+ values: true
+ })
+}
+
App.prototype.getShard = function (id, cb) {
var self = this
this.getMsgDecrypted(id, function (err, msg) {