1
0
mirror of https://github.com/bigchaindb/js-bigchaindb-driver.git synced 2024-11-22 09:46:58 +01:00

Add text search support

This commit is contained in:
Tim Daubenschütz 2017-05-14 16:35:47 +02:00 committed by tim
parent 361c21ba1c
commit 65c4c43f23

View File

@ -8,6 +8,7 @@ export default class Connection {
}
getApiUrls(endpoints) {
// TODO: Use camel case
return {
'blocks': this.path + 'blocks',
'blocks_detail': this.path + 'blocks/%(blockId)s',
@ -15,6 +16,7 @@ export default class Connection {
'statuses': this.path + 'statuses',
'transactions': this.path + 'transactions',
'transactions_detail': this.path + 'transactions/%(txId)s',
'search_assets': this.path + 'assets',
'votes': this.path + 'votes'
}[endpoints];
}
@ -155,4 +157,18 @@ export default class Connection {
jsonBody: transaction
})
}
/**
* @public
*
* @param transaction
*/
searchAssets(query) {
return this.req(this.getApiUrls('search_assets'), {
query: {
text_search: query
}
})
}
}