Page MenuHomePhabricator

[keyserver] Use Platform instead of a DeviceType for sending notifs
ClosedPublic

Authored by michal on Feb 21 2023, 3:55 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 26, 12:47 PM
Unknown Object (File)
Sun, Mar 10, 6:38 PM
Unknown Object (File)
Feb 21 2024, 12:36 PM
Unknown Object (File)
Feb 21 2024, 10:21 AM
Unknown Object (File)
Feb 21 2024, 10:21 AM
Unknown Object (File)
Feb 18 2024, 12:15 AM
Unknown Object (File)
Feb 17 2024, 11:19 PM
Unknown Object (File)
Feb 17 2024, 7:57 PM
Subscribers

Details

Summary

We want to be able to send web notifications but currently send.js is typed using DeviceType which doesn't include web. This diff changes it to use the Platform type and changes some names to fit better. There should be no behaviour changes introduced in this diff.

Test Plan

Create a new account on iOS and check if notifications still work.

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

One place where the names aren't changed are the Delivery objects which contain a deviceType field that after this diff will contain values from Platform. But it's saved inside the database as json and we would have to support both deviceType field (for older notifications) and platform fields (for newer notifications) when rescinding notifications so I'm not sure if it's worth it.

This revision is now accepted and ready to land.Feb 21 2023, 6:36 AM