Skip to content

Commit 28394ce

Browse files
committed
chore: lint fix
1 parent 7470343 commit 28394ce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/Services/hermes.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ class Hermes extends Request {
4949
return this.send('POST', path, { query });
5050
}
5151

52-
/**
52+
/**
5353
* @param {Object} payload Hermes payload to send
5454
* @param {string} payload.type Type: 'accountId', 'applicationId', 'recipient'
5555
* @param {string} payload.value either one from: user account id, application id, or recipient: email/phone
5656
*/
57-
createBlacklist(payload){
57+
createBlacklist(payload) {
5858
const path = `/blacklist`;
5959
return this.send('POST', path, { payload });
6060
}
@@ -67,7 +67,7 @@ class Hermes extends Request {
6767
* @param {string} payload.params.query.type 'accountId', 'applicationId', 'recipient'
6868
* @param {string} payload.params.query.value either one from: user account id, application id, or recipient: email/phone
6969
*/
70-
getBlacklistEntries(params){
70+
getBlacklistEntries(params) {
7171
const path = `/blacklist/entries`;
7272
return this.send('GET', path, params);
7373
}
@@ -77,7 +77,7 @@ class Hermes extends Request {
7777
*
7878
* @param {string} id
7979
*/
80-
deleteBlacklistEntry(id){
80+
deleteBlacklistEntry(id) {
8181
const path = `/blacklist/${id}`;
8282
return this.send('DELETE', path);
8383
}

0 commit comments

Comments
 (0)