aboutsummaryrefslogtreecommitdiff
path: root/api/user/password.py
blob: 731f7e4ef501d0115ffa23482fe83fcb9a352909 (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]