Skip to content

Commit 5a8a17b

Browse files
committed
Merge branch 'master' into feat/gdpr
2 parents 1e1a5d0 + 305fc56 commit 5a8a17b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lib/Services/hermes.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,14 @@ class Hermes extends Request {
3939

4040
/**
4141
* Verifies the application's notification settings.
42+
*
43+
* @param {string} applicationId
4244
*/
43-
verify() {
45+
verify(applicationId) {
4446
const path = `/notify/verify`;
45-
return this.send('POST', path, {});
47+
const query = this.setTenant(applicationId);
48+
49+
return this.send('POST', path, { query });
4650
}
4751

4852
/**

0 commit comments

Comments
 (0)