-
-
Notifications
You must be signed in to change notification settings - Fork 51
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
[fix] Store notification verb in configuration #335
base: master
Are you sure you want to change the base?
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.
CI build is failing.
@@ -65,6 +65,7 @@ class AbstractNotification(UUIDModel, BaseNotification): | |||
_actor = BaseNotification.actor | |||
_action_object = BaseNotification.action_object | |||
_target = BaseNotification.target | |||
verb = models.CharField(max_length=128, null=True) |
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.
Do we really need to do this?
I don't think this was requested, what do you think @pandafy?
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.
This is not required as the verb
field is inherited from the BaseNotification
model.
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.
Should i revert this changes @nemesifier.
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.
Yes, revert this.
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.
@pandafy done
@@ -65,6 +65,7 @@ class AbstractNotification(UUIDModel, BaseNotification): | |||
_actor = BaseNotification.actor | |||
_action_object = BaseNotification.action_object | |||
_target = BaseNotification.target | |||
verb = models.CharField(max_length=128, null=True) |
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.
This is not required as the verb
field is inherited from the BaseNotification
model.
@@ -65,6 +65,7 @@ class AbstractNotification(UUIDModel, BaseNotification): | |||
_actor = BaseNotification.actor | |||
_action_object = BaseNotification.action_object | |||
_target = BaseNotification.target | |||
verb = models.CharField(max_length=128, null=True) |
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.
Yes, revert this.
Checklist
Reference to Existing Issue
Closes #334.
Please open a new issue if there isn't an existing issue yet.
Description of Changes
Please describe these changes.
Screenshot
Please include any relevant screenshots.