Skip to content
Snippets Groups Projects
Unverified Commit c41339a3 authored by murych's avatar murych
Browse files

added index page

parent 1d92b265
No related branches found
No related tags found
No related merge requests found
Pipeline #
from flask import Flask, abort, request
from flask import Flask, abort, request, render_template
 
from auth import auth_facebook, auth_slack
from config import *
Loading
Loading
@@ -12,6 +12,11 @@ cfg = {
}
 
 
@app.route('/')
def index():
return render_template('index.html')
@app.route('/callback/xE4sA', methods=['GET', 'POST'])
def callback():
if not request.json or 'type' not in request.json:
Loading
Loading
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment