-
Notifications
You must be signed in to change notification settings - Fork 26
apps/notifications - create notification system #2979
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f53a07e to
187ecd3
Compare
m4ra
reviewed
Sep 11, 2025
Contributor
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.
Overall the abstraction approach is good. However, here are some important points:
- Make a simpler file structure, because using same folder names as the app names (
projects,comments, etc) is prone to import errors and confusing. I highly recommend keeping all these new notification classes in just two files -> thestrategies/base.pyandstrategies/mixin.py- see my inline comment on theproject.pyabout mixin vs inheritance. - Keep all signals in one file too, and the helpers.py move it under the
notificationsfolder. for same reason of keeping the overall file structure easier to navigate. - Do the inheritance from
object, and not fromABC, as object is a more standard way to work with models, than just abstract methods in django. - Consider removing the
Strategysuffix off the class names, as it only make the names longer without adding semantic value. - Verify the correct parameters are passed via the helper function
_create_notificationsfor the strategies - Include in the docs, the custom template tag usage, and why is it useful.
e24730f to
57e2eb2
Compare
8ca7f92 to
4e8c9db
Compare
6d39068 to
95804ff
Compare
de10778 to
71b5e79
Compare
glanzel
approved these changes
Nov 19, 2025
adhocracy-plus/templates/includes/header_notification_button.html
Outdated
Show resolved
Hide resolved
apps/notifications/templates/a4_candy_notifications/_notification_card.html
Outdated
Show resolved
Hide resolved
71b5e79 to
85bac14
Compare
5e503d6 to
01d502f
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Tasks