* restore deleted reaction * @link https://getstream.io/activity-feeds/docs/node/reactions_introduction/?language=js#removing-reactions * @method restore * @memberof StreamReaction.prototype * @param {string} id Reaction Id * @return {Promise } * @example reactions.r
(id: string)
| 315 | * @example reactions.restore("67b3e3b5-b201-4697-96ac-482eb14f88ec") |
| 316 | */ |
| 317 | restore(id: string) { |
| 318 | return this.client.put({ |
| 319 | url: this.buildURL(id, 'restore'), |
| 320 | token: this.token, |
| 321 | }); |
| 322 | } |
| 323 | } |
no test coverage detected