Skip to content

Commit

Permalink
Merge pull request #110 from praekelt/feature/OPENHELPD-100-faq-revie…
Browse files Browse the repository at this point in the history
…w-changes-languages

Feature/openhelpd 100 faq review changes languages
  • Loading branch information
jpaidoussi committed Aug 26, 2016
2 parents 08aa443 + 013059b commit 246ec87
Show file tree
Hide file tree
Showing 108 changed files with 6,181 additions and 1,469 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![Build Status](https://travis-ci.org/rapidpro/casepro.svg?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/rapidpro/casepro/badge.svg?branch=master)](https://coveralls.io/github/rapidpro/casepro?branch=master)

Case management dashboard for [RapidPro](http://rapidpro.io), built for UNICEF by [Nyaruka](http://nyaruka.com).
Case management dashboard for UNICEF and partner organizations. Supports use of both [RapidPro](http://rapidpro.io) and [Junebug](https://github.com/praekelt/junebug) as messaging backends.

For documentation see the [project wiki](https://github.com/rapidpro/casepro/wiki) which includes essential
information for both developers and administrators.
11 changes: 9 additions & 2 deletions casepro/backend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,15 @@ def fetch_contact_messages(self, org, contact, created_after, created_before):
:param contact: the contact
:param created_after: include messages created after this time
:param created_before: include messages created before this time
:return: the messages as JSON objects in reverse chronological order. JSON format should match that returned by
Message.as_json() for incoming messages and Outgoing.as_json() for outgoing messages.
:return: the messages as transient Message and Outgoing instances
"""

@abstractmethod
def get_url_patterns(self):
"""
Returns the list of URL patterns that should be registered for this backend.
:return: a list of URL patterns.
"""


Expand Down
Loading

0 comments on commit 246ec87

Please sign in to comment.