1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/17333] Add push subscribe toggle to notification dropdown

PHPBB-17333

Signed-off-by: Matt Friedman <maf675@gmail.com>
This commit is contained in:
Matt Friedman
2024-06-04 09:34:02 -07:00
parent e35a6f7aa5
commit d55ec608ec
12 changed files with 51 additions and 8 deletions

View File

@@ -26,13 +26,14 @@ class add_webpush_options extends migration
public function effectively_installed(): bool
{
return $this->config->offsetExists('webpush_method_enables');
return $this->config->offsetExists('webpush_method_enables') || $this->config->offsetExists('webpush_dropdown_subscribe');
}
public function update_data(): array
{
return [
['config.add', ['webpush_method_enables', false]],
['config.add', ['webpush_dropdown_subscribe', false]],
];
}
@@ -40,6 +41,7 @@ class add_webpush_options extends migration
{
return [
['config.remove', ['webpush_method_enables']],
['config.remove', ['webpush_dropdown_subscribe']],
];
}
}