Skip to content

Commit

Permalink
commit changes
Browse files Browse the repository at this point in the history
  • Loading branch information
suhanacharya committed Dec 18, 2020
1 parent b8aa6b1 commit 2ab4cc5
Show file tree
Hide file tree
Showing 3 changed files with 11,414 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
node_modules/
venv
api/prycey.db
api/__pycache__
3 changes: 2 additions & 1 deletion api/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from flask import Flask, request, render_template, session, redirect, url_for
from werkzeug.utils import secure_filename
import sqlite3
from flask_cors import CORS
import json
Expand Down Expand Up @@ -154,7 +155,7 @@ def sell():
return redirect("/signin")


@app.route('/search', methods=["POST"])
@app.route('/search/', methods=["POST"])
def search():
"""
Gets search query '?q=' for name
Expand Down
Loading

0 comments on commit 2ab4cc5

Please sign in to comment.