Skip to content
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.

Commit

Permalink
Merge ea116a1 into bcaee71
Browse files Browse the repository at this point in the history
  • Loading branch information
akelad committed Oct 5, 2018
2 parents bcaee71 + ea116a1 commit 5ca9005
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -35,6 +35,29 @@ Fixed
- properly handle non ascii categorical slot values, e.g. ``大于100亿元``
- fixed HTTP server attempting to authenticate based on incorrect path to the correct JWT data field

[0.11.11] - 2018-10-05
^^^^^^^^^^^^^^^^^^^^^^

Fixed
-----
- Add missing name() to facebook Messenger class


[0.11.10] - 2018-10-05
^^^^^^^^^^^^^^^^^^^^^^

Fixed
-----
- backport fix to JWT schema


[0.11.9] - 2018-10-04
^^^^^^^^^^^^^^^^^^^^^

Changed
-------
- pin tensorflow 1.10.0

[0.11.8] - 2018-09-28
^^^^^^^^^^^^^^^^^^^^^

Expand Down
4 changes: 4 additions & 0 deletions rasa_core/channels/facebook.py
Expand Up @@ -22,6 +22,10 @@
class Messenger(BaseMessenger):
"""Implement a fbmessenger to parse incoming webhooks and send msgs."""

@classmethod
def name(cls):
return "facebook"

def __init__(self, page_access_token, on_new_message):
# type: (Text, Callable[[UserMessage], None]) -> None

Expand Down

0 comments on commit 5ca9005

Please sign in to comment.