[FIX] website_mail_group: number of thread and replies back to normal values after testing.

This commit is contained in:
--global 2014-05-22 13:29:49 +02:00
parent a6eaa7bac3
commit 8a6b0d1d4d
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ from openerp.addons.web.http import request
class MailGroup(http.Controller):
_thread_per_page = 5
_replies_per_page = 1
_thread_per_page = 20
_replies_per_page = 10
def _get_archives(self, group_id):
MailMessage = request.registry['mail.message']