Fix get profiles flask request (#1246)

This commit is contained in:
Jonathan Zernik 2021-09-09 14:39:14 -07:00 committed by GitHub
parent 6c1475995b
commit e14f2a3c41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -365,7 +365,7 @@ def create_app(handler, username, password):
def getprofiles():
return handle_request(
squeak_admin_pb2.GetProfilesRequest(),
handler.handle_get_signing_profiles,
handler.handle_get_profiles,
)
@app.route("/getsigningprofiles", methods=["POST"])