zulip/zerver/views
Arpith Siromoney ee97ba04fe Add an API endpoint to send typing notification events.
POST to /typing creates a typing event
Required parameters are 'op' ('start' or 'stop') and 'to' (recipient
emails). If there are multiple recipients, the 'to' parameter
should be a JSON string of the list of recipient emails.
The event created looks like:
{
  'type': 'typing',
  'op': 'start',
  'sender': 'hamlet@zulip.com',
  'recipients': [{
    'id': 1,
    'email': 'othello@zulip.com'
  }]
}
2016-10-20 23:05:18 -07:00
..
webhooks Remove @-mentions from jira integration. 2016-10-20 11:55:12 -07:00
__init__.py views: split events_register.py from main views file. 2016-10-11 21:27:06 -07:00
alert_words.py Remove rest_dispatch hack and optimize imports. 2016-06-24 16:11:03 -07:00
auth.py views: Split views/auth.py out of core views file. 2016-10-11 21:27:06 -07:00
events_register.py views: split events_register.py from main views file. 2016-10-11 21:27:06 -07:00
integrations.py Add option for hosting each realm on its own subdomain. 2016-09-27 23:24:14 -07:00
invite.py views: Move json_refer_friend to invite.py. 2016-10-11 21:27:06 -07:00
messages.py message: Create new access_message library function. 2016-10-11 17:17:19 -07:00
pointer.py Remove extra new lines at the ends of Zulip authoried files. 2016-09-26 21:05:24 -07:00
presence.py Remove json/get_active_statuses endpoint. 2016-09-27 14:33:56 -07:00
push_notifications.py push notifications: Fix very minor quirk when adding tokens. 2016-09-15 06:40:18 -07:00
realm.py Add realm-level default language setting. 2016-08-09 17:38:29 -07:00
realm_emoji.py lint: Ban use of json_success({}) instead of json_success(). 2016-10-20 22:34:04 -07:00
report.py Use universal_newlines=True in subprocess.check_output. 2016-07-26 12:06:41 -07:00
streams.py lint: Ban use of json_success({}) instead of json_success(). 2016-10-20 22:34:04 -07:00
tutorial.py Remove extra new lines at the ends of Zulip authoried files. 2016-09-26 21:05:24 -07:00
typing.py Add an API endpoint to send typing notification events. 2016-10-20 23:05:18 -07:00
unsubscribe.py views: Move one-click unsubscribe to its own file. 2016-10-11 21:27:06 -07:00
upload.py Url encoded name of the file should be an ascii. 2016-09-26 21:13:34 -07:00
user_settings.py Move name_changes_disabled to zerver.models 2016-10-10 09:27:52 -07:00
users.py lint: Ban use of json_success({}) instead of json_success(). 2016-10-20 22:34:04 -07:00
zephyr.py Move webathena views to its own file. 2016-08-18 18:26:49 -07:00