Skip to content

Commit

Permalink
Deploying to gh-pages from master @ 905bc3f 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
colinsl committed Feb 14, 2024
1 parent 344e006 commit af7aa7d
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: ade52c52c91678ea633c7168da458329
config: 93b56cdcf5c8b4e8e34c0bea20d76cb7
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified .doctrees/environment.pickle
Binary file not shown.
Binary file modified .doctrees/installation_and_usage.doctree
Binary file not shown.
4 changes: 2 additions & 2 deletions CHANGELOG.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Changelog &mdash; python-omnibot-receiver 3.1.5-e3bf8f documentation</title>
<title>Changelog &mdash; python-omnibot-receiver 3.1.5-905bc3 documentation</title>



Expand Down Expand Up @@ -63,7 +63,7 @@


<div class="version">
3.1.5-e3bf8f
3.1.5-905bc3
</div>


Expand Down
2 changes: 1 addition & 1 deletion _sources/installation_and_usage.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Here's a really basic example, that'll route message events, and interactive com
@flask_app.route('/api/v1/bot', methods=['POST'])
def pingbot_route():
message = request.get_json()
ret = router.handle_message(message)
ret = router.handle_event(message)
return jsonify(ret)
The above example will respond with ``pong``, when a user sends ``@pingbot ping``, or when an user interacts with an interactive component, which sends the ``ping_callback`` event.
Expand Down
2 changes: 1 addition & 1 deletion _static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '3.1.5-e3bf8f',
VERSION: '3.1.5-905bc3',
LANGUAGE: 'None',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
Expand Down
4 changes: 2 additions & 2 deletions autogen/omnibot_receiver.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>omnibot_receiver package &mdash; python-omnibot-receiver 3.1.5-e3bf8f documentation</title>
<title>omnibot_receiver package &mdash; python-omnibot-receiver 3.1.5-905bc3 documentation</title>



Expand Down Expand Up @@ -62,7 +62,7 @@


<div class="version">
3.1.5-e3bf8f
3.1.5-905bc3
</div>


Expand Down
4 changes: 2 additions & 2 deletions genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Index &mdash; python-omnibot-receiver 3.1.5-e3bf8f documentation</title>
<title>Index &mdash; python-omnibot-receiver 3.1.5-905bc3 documentation</title>



Expand Down Expand Up @@ -62,7 +62,7 @@


<div class="version">
3.1.5-e3bf8f
3.1.5-905bc3
</div>


Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>omnibot-receiver &mdash; python-omnibot-receiver 3.1.5-e3bf8f documentation</title>
<title>omnibot-receiver &mdash; python-omnibot-receiver 3.1.5-905bc3 documentation</title>



Expand Down Expand Up @@ -62,7 +62,7 @@


<div class="version">
3.1.5-e3bf8f
3.1.5-905bc3
</div>


Expand Down
6 changes: 3 additions & 3 deletions installation_and_usage.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Installation and Usage &mdash; python-omnibot-receiver 3.1.5-e3bf8f documentation</title>
<title>Installation and Usage &mdash; python-omnibot-receiver 3.1.5-905bc3 documentation</title>



Expand Down Expand Up @@ -63,7 +63,7 @@


<div class="version">
3.1.5-e3bf8f
3.1.5-905bc3
</div>


Expand Down Expand Up @@ -221,7 +221,7 @@ <h3>Routing<a class="headerlink" href="#routing" title="Permalink to this headli
<span class="nd">@flask_app.route</span><span class="p">(</span><span class="s1">&#39;/api/v1/bot&#39;</span><span class="p">,</span> <span class="n">methods</span><span class="o">=</span><span class="p">[</span><span class="s1">&#39;POST&#39;</span><span class="p">])</span>
<span class="k">def</span> <span class="nf">pingbot_route</span><span class="p">():</span>
<span class="n">message</span> <span class="o">=</span> <span class="n">request</span><span class="o">.</span><span class="n">get_json</span><span class="p">()</span>
<span class="n">ret</span> <span class="o">=</span> <span class="n">router</span><span class="o">.</span><span class="n">handle_message</span><span class="p">(</span><span class="n">message</span><span class="p">)</span>
<span class="n">ret</span> <span class="o">=</span> <span class="n">router</span><span class="o">.</span><span class="n">handle_event</span><span class="p">(</span><span class="n">message</span><span class="p">)</span>
<span class="k">return</span> <span class="n">jsonify</span><span class="p">(</span><span class="n">ret</span><span class="p">)</span>
</pre></div>
</div>
Expand Down
Binary file modified objects.inv
Binary file not shown.
4 changes: 2 additions & 2 deletions py-modindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Python Module Index &mdash; python-omnibot-receiver 3.1.5-e3bf8f documentation</title>
<title>Python Module Index &mdash; python-omnibot-receiver 3.1.5-905bc3 documentation</title>



Expand Down Expand Up @@ -68,7 +68,7 @@


<div class="version">
3.1.5-e3bf8f
3.1.5-905bc3
</div>


Expand Down
4 changes: 2 additions & 2 deletions search.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Search &mdash; python-omnibot-receiver 3.1.5-e3bf8f documentation</title>
<title>Search &mdash; python-omnibot-receiver 3.1.5-905bc3 documentation</title>



Expand Down Expand Up @@ -61,7 +61,7 @@


<div class="version">
3.1.5-e3bf8f
3.1.5-905bc3
</div>


Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit af7aa7d

Please sign in to comment.