aboutsummaryrefslogtreecommitdiff
path: root/api/user/password.py
blob: 2abbde685e93f687f458706ad03b4b16e9c4d72c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from flask import Blueprint, request
from db import cursor

password = Blueprint('password', __name__)


# this endpoint is unfinished
@password.route('/password')
def index():
    data = request.get_json()

    if not data["password"] or \
       not data["newPassword"]:
        return "", 400

    return {}, 200


dynamic_route = ["/user", password]