This repository has been archived by the owner on Feb 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #697 from OkunaOrg/feature/subscribe-to-post-notif…
…ications Feature/subscribe to post notifications
- Loading branch information
Showing
44 changed files
with
3,179 additions
and
360 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
18 changes: 18 additions & 0 deletions
18
...auth/migrations/0052_usernotificationssettings_post_subscription_comment_notifications.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 2.2.5 on 2020-02-26 14:14 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('openbook_auth', '0051_auto_20191209_1338'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='usernotificationssettings', | ||
name='post_subscription_comment_notifications', | ||
field=models.BooleanField(default=True, verbose_name='post subscription comment notifications'), | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
...grations/0053_remove_usernotificationssettings_post_subscription_comment_notifications.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Generated by Django 2.2.10 on 2020-04-14 17:38 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('openbook_auth', '0052_usernotificationssettings_post_subscription_comment_notifications'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='usernotificationssettings', | ||
name='post_subscription_comment_notifications', | ||
), | ||
] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Generated by Django 2.2.12 on 2020-04-22 10:32 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('openbook_auth', '0053_remove_usernotificationssettings_post_subscription_comment_notifications'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='usernotificationssettings', | ||
name='post_comment_notifications', | ||
), | ||
migrations.RemoveField( | ||
model_name='usernotificationssettings', | ||
name='post_comment_reaction_notifications', | ||
), | ||
migrations.RemoveField( | ||
model_name='usernotificationssettings', | ||
name='post_comment_reply_notifications', | ||
), | ||
migrations.RemoveField( | ||
model_name='usernotificationssettings', | ||
name='post_comment_user_mention_notifications', | ||
), | ||
migrations.RemoveField( | ||
model_name='usernotificationssettings', | ||
name='post_reaction_notifications', | ||
), | ||
migrations.RemoveField( | ||
model_name='usernotificationssettings', | ||
name='post_user_mention_notifications', | ||
), | ||
migrations.AddField( | ||
model_name='usernotificationssettings', | ||
name='post_notifications', | ||
field=models.BooleanField(default=True, verbose_name='post notifications'), | ||
), | ||
] |
Oops, something went wrong.