enhance: Implement the toggle to (or not to) close push notifications when notifications or messages are read (#9219)
* create file * wip * fix * wip * tabun dekita * ✌️ * implement subscribe push notification button to tutorial * check-exists→show-registration * add column sendReadMessage * fix migration file * sw api * change PushNotificationService * wip * ✌️ * fix tutorial footer flex
This commit is contained in:
parent
96dda253b0
commit
4ecc42744c
14 changed files with 483 additions and 106 deletions
|
@ -272,6 +272,8 @@ import * as ep___resetDb from './endpoints/reset-db.js';
|
|||
import * as ep___resetPassword from './endpoints/reset-password.js';
|
||||
import * as ep___serverInfo from './endpoints/server-info.js';
|
||||
import * as ep___stats from './endpoints/stats.js';
|
||||
import * as ep___sw_show_registration from './endpoints/sw/show-registration.js';
|
||||
import * as ep___sw_update_registration from './endpoints/sw/update-registration.js';
|
||||
import * as ep___sw_register from './endpoints/sw/register.js';
|
||||
import * as ep___sw_unregister from './endpoints/sw/unregister.js';
|
||||
import * as ep___test from './endpoints/test.js';
|
||||
|
@ -588,6 +590,8 @@ const $resetDb: Provider = { provide: 'ep:reset-db', useClass: ep___resetDb.defa
|
|||
const $resetPassword: Provider = { provide: 'ep:reset-password', useClass: ep___resetPassword.default };
|
||||
const $serverInfo: Provider = { provide: 'ep:server-info', useClass: ep___serverInfo.default };
|
||||
const $stats: Provider = { provide: 'ep:stats', useClass: ep___stats.default };
|
||||
const $sw_show_registration: Provider = { provide: 'ep:sw/show-registration', useClass: ep___sw_show_registration.default };
|
||||
const $sw_update_registration: Provider = { provide: 'ep:sw/update-registration', useClass: ep___sw_update_registration.default };
|
||||
const $sw_register: Provider = { provide: 'ep:sw/register', useClass: ep___sw_register.default };
|
||||
const $sw_unregister: Provider = { provide: 'ep:sw/unregister', useClass: ep___sw_unregister.default };
|
||||
const $test: Provider = { provide: 'ep:test', useClass: ep___test.default };
|
||||
|
@ -908,6 +912,8 @@ const $fetchRss: Provider = { provide: 'ep:fetch-rss', useClass: ep___fetchRss.d
|
|||
$resetPassword,
|
||||
$serverInfo,
|
||||
$stats,
|
||||
$sw_show_registration,
|
||||
$sw_update_registration,
|
||||
$sw_register,
|
||||
$sw_unregister,
|
||||
$test,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue