(payload: PushUnsubscribePayload)
| 238 | } |
| 239 | |
| 240 | async unsubscribePushNotifications(payload: PushUnsubscribePayload): Promise<void> { |
| 241 | await this.request('/api/push/subscribe', { |
| 242 | method: 'DELETE', |
| 243 | body: JSON.stringify(payload) |
| 244 | }) |
| 245 | } |
| 246 | |
| 247 | async setVisibility(payload: VisibilityPayload): Promise<void> { |
| 248 | await this.request('/api/visibility', { |
no test coverage detected