mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
690ee3dc15
* Setup basic notification page * Add basic notification implementation * Register for push notifications * Implement dispatching * Add fields * Handle image and link * Add notification config * Add field for users notification tokens * Implement saving of notification tokens * Implement VAPID key generation * Implement public key encoding * Implement webpush from server * Implement push notification handling * Make notifications config only * Add maskable icon * Use zod form to control notification settings in the UI * Use js * Always open notification * Support multiple endpoints * Handle cleaning up expired notification registrations * Correctly unsubscribe notifications * Change ttl dynamically * Add note about notification latency and features * Cleanup docs * Fix firefox pushes * Add links to docs and improve formatting * Improve wording * Fix docstring Co-authored-by: Blake Blackshear <blake@frigate.video> * Handle case where native auth is not enabled * Show errors in UI --------- Co-authored-by: Blake Blackshear <blake@frigate.video>
88 lines
2.3 KiB
JavaScript
88 lines
2.3 KiB
JavaScript
module.exports = {
|
|
docs: {
|
|
Frigate: [
|
|
"frigate/index",
|
|
"frigate/hardware",
|
|
"frigate/installation",
|
|
"frigate/camera_setup",
|
|
"frigate/video_pipeline",
|
|
"frigate/glossary",
|
|
],
|
|
Guides: [
|
|
"guides/getting_started",
|
|
"guides/configuring_go2rtc",
|
|
"guides/ha_notifications",
|
|
"guides/ha_network_storage",
|
|
"guides/reverse_proxy",
|
|
],
|
|
Configuration: {
|
|
"Configuration Files": [
|
|
"configuration/index",
|
|
"configuration/reference",
|
|
{
|
|
type: "link",
|
|
label: "Go2RTC Configuration Reference",
|
|
href: "https://github.com/AlexxIT/go2rtc/tree/v1.9.4#configuration",
|
|
},
|
|
],
|
|
Detectors: [
|
|
"configuration/object_detectors",
|
|
"configuration/audio_detectors",
|
|
],
|
|
"Semantic Search": [
|
|
"configuration/semantic_search",
|
|
"configuration/genai",
|
|
],
|
|
Cameras: [
|
|
"configuration/cameras",
|
|
"configuration/review",
|
|
"configuration/record",
|
|
"configuration/snapshots",
|
|
"configuration/motion_detection",
|
|
"configuration/birdseye",
|
|
"configuration/live",
|
|
"configuration/restream",
|
|
"configuration/autotracking",
|
|
"configuration/camera_specific",
|
|
],
|
|
Objects: [
|
|
"configuration/object_filters",
|
|
"configuration/masks",
|
|
"configuration/zones",
|
|
"configuration/objects",
|
|
"configuration/stationary_objects",
|
|
],
|
|
"Extra Configuration": [
|
|
"configuration/authentication",
|
|
"configuration/notifications",
|
|
"configuration/hardware_acceleration",
|
|
"configuration/ffmpeg_presets",
|
|
"configuration/tls",
|
|
"configuration/advanced",
|
|
],
|
|
},
|
|
Integrations: [
|
|
"integrations/plus",
|
|
"integrations/home-assistant",
|
|
"integrations/api",
|
|
"integrations/mqtt",
|
|
"integrations/third_party_extensions",
|
|
],
|
|
"Frigate+": [
|
|
"plus/index",
|
|
"plus/first_model",
|
|
"plus/improving_model",
|
|
"plus/faq",
|
|
],
|
|
Troubleshooting: [
|
|
"troubleshooting/faqs",
|
|
"troubleshooting/recordings",
|
|
"troubleshooting/edgetpu",
|
|
],
|
|
Development: [
|
|
"development/contributing",
|
|
"development/contributing-boards",
|
|
],
|
|
},
|
|
};
|