Skip to content

Commit

Permalink
Very close to finishing covering the full API
Browse files Browse the repository at this point in the history
  • Loading branch information
Douglas Brion committed Jul 5, 2019
1 parent 98abdd5 commit fe054d1
Show file tree
Hide file tree
Showing 4 changed files with 211 additions and 119 deletions.
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,10 @@ A check list of the features currently implemented can be seen below.
- |ss| Regenerate a user’s personal API key |se|
- |ss| Delete a user’s personal API key |se|
* Util
- Test paths or URLs
- Path
- URL
- Server
- |ss| Test paths or URLs |se|
- |ss| Path |se|
- |ss| URL |se|
- |ss| Server |se|
* Wizard
- |ss| Retrieve additional data about registered wizards |se|
- |ss| Finish wizards |se|
Expand Down
6 changes: 6 additions & 0 deletions examples/facebook_chatbot/chatbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,12 @@ def receive_message(self):
self.send_message(recipient_id, self.home())
elif text == 'toggle':
self.send_message(recipient_id, self.toggle())
elif text == 'pause':
self.send_message(recipient_id, self.toggle())
elif text == 'resume':
self.send_message(recipient_id, self.toggle())
elif text == 'cancel':
self.send_message(recipient_id, self.toggle())
elif message['message'].get('text'):
response_sent_text = self.get_message()
self.send_message(recipient_id, response_sent_text)
Expand Down
Loading

0 comments on commit fe054d1

Please sign in to comment.