diff options
Diffstat (limited to 'lib/app.js')
-rw-r--r-- | lib/app.js | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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) { |