-
-
Notifications
You must be signed in to change notification settings - Fork 32
Add ntfy support #300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ntfy support #300
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds ntfy notification provider support to enable push notifications through the ntfy service. The implementation includes both self-hosted and public ntfy.sh server support with multiple authentication methods and configurable priority levels.
Key changes:
- Complete ntfy provider implementation with authentication types (None, Basic Auth, Access Token)
- New documentation pages for notification providers with improved organization
- Frontend UI updates for PrimeNG component migration and ntfy-specific configuration
- Backend models, services, and API endpoints for ntfy integration
Reviewed Changes
Copilot reviewed 45 out of 52 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| docs/docs/configuration/notifications/ntfy.mdx | New documentation page for ntfy configuration options |
| docs/docs/configuration/notifications/notifiarr.mdx | Extracted Notifiarr documentation to separate page |
| docs/docs/configuration/notifications/apprise.mdx | Extracted Apprise documentation to separate page |
| docs/docs/configuration/notifications/index.mdx | Reorganized to reference separate provider pages |
| code/frontend/src/styles.scss | Updated CSS selectors for PrimeNG component migration |
| code/frontend/src/app/shared/models/ntfy-*.ts | Frontend TypeScript models for ntfy configuration |
| code/frontend/src/app/settings/notification-settings/modals/ntfy-provider/* | New ntfy provider configuration modal component |
| code/backend/Cleanuparr.Domain/Enums/Ntfy*.cs | Backend enum definitions for ntfy authentication and priority |
| code/backend/Cleanuparr.Persistence/Models/Configuration/Notification/NtfyConfig.cs | Database model for ntfy configuration |
| code/backend/Cleanuparr.Infrastructure/Features/Notifications/Ntfy/* | Ntfy notification provider implementation |
| code/backend/Cleanuparr.Api/Controllers/ConfigurationController.cs | API endpoints for ntfy provider CRUD operations |
Files not reviewed (1)
- code/backend/Cleanuparr.Persistence/Migrations/Data/20250912234118_AddNtfy.Designer.cs: Language not supported
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Relates to #178