-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 482af69 Author: Christophe Gabard <[email protected]> Date: Tue Nov 22 20:58:21 2016 +0100 Disable ping commit 21f2d59 Author: Christophe Gabard <[email protected]> Date: Tue Nov 22 20:50:53 2016 +0100 Update markdown version commit 58e9802 Author: Christophe Gabard <[email protected]> Date: Sun Nov 20 17:06:04 2016 +0100 fix test commit 541b0c7 Author: Christophe Gabard <[email protected]> Date: Sun Nov 20 16:34:09 2016 +0100 fix test commit 7e0d0e2 Author: Christophe Gabard <[email protected]> Date: Sun Nov 20 16:08:44 2016 +0100 fix test commit 87d51a0 Author: Christophe Gabard <[email protected]> Date: Sun Nov 20 13:37:25 2016 +0100 fix according to @vhr comments commit 1cb9515 Author: Gérard Paligot <[email protected]> Date: Sun Nov 20 13:04:28 2016 +0100 Corrige les retours de @vhf (#2) * feat: Ajoute une limite de pings sur les messages. * style: Change " en ' dans zds/notification/models.py. * feat: Ajoute des asserts dans answer_comment_event. * fix: Marque les notifs comme lues pour les user connectes. * refactor: Evite de gerer le mail dans answer_comment_event. * fix: Gere le save dans Comment#update_content. commit fc52a8a Author: Christophe Gabard <[email protected]> Date: Mon Nov 14 21:11:17 2016 +0100 Mise a jour de zmarkdown commit 3f01e1e Author: GerardPaligot <[email protected]> Date: Sat Nov 12 19:05:41 2016 +0100 feat: Genere des notifications pour les ping. commit 3a1306f Author: GerardPaligot <[email protected]> Date: Sat Nov 12 19:26:45 2016 +0100 refactor: Ajoute l'objet markdown a render_markdown. commit 436192d Author: GerardPaligot <[email protected]> Date: Sat Nov 12 18:16:36 2016 +0100 fix: Corrige la signature de render_markdown. commit 5f03cd4 Author: Christophe Gabard <[email protected]> Date: Wed Nov 9 21:03:09 2016 +0100 Update with new ping version commit 0efbaea Author: Christophe Gabard <[email protected]> Date: Mon Nov 7 10:54:05 2016 +0100 fix flake8 commit e844104 Author: Christophe Gabard <[email protected]> Date: Mon Nov 7 00:10:38 2016 +0100 fix for inline commit d7d9649 Author: Christophe Gabard <[email protected]> Date: Sun Nov 6 23:53:09 2016 +0100 restore decale_header commit 0e70a68 Author: Christophe Gabard <[email protected]> Date: Sun Nov 6 23:49:45 2016 +0100 add ping processing commit 7f8fba3 Author: Christophe Gabard <[email protected]> Date: Sun Nov 6 23:43:23 2016 +0100 v13 (ping) commit 63d6228 Author: Christophe Gabard <[email protected]> Date: Sun Nov 6 23:42:26 2016 +0100 Ping support commit 41bac94 Author: Christophe Gabard <[email protected]> Date: Sun Nov 6 22:20:13 2016 +0100 Nouvelle version markdown
- Loading branch information
Showing
16 changed files
with
150 additions
and
41 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
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
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
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,22 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import zds.notification.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('notification', '0013_clean_notifications'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='PingSubscription', | ||
fields=[ | ||
('answersubscription_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='notification.AnswerSubscription')), | ||
], | ||
bases=('notification.answersubscription', zds.notification.models.MultipleNotificationsMixin), | ||
), | ||
] |
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
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
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
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
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
Oops, something went wrong.