More Database Functions

This commit is contained in:
Patrick_Pluto 2024-09-20 15:26:18 +02:00
parent 054cbf6a5d
commit b924d30616
2 changed files with 14 additions and 6 deletions

View file

@ -49,7 +49,9 @@ class API:
if action == "change_password":
self.db.update_password(data)
if action == "get_data":
self.db.get_additional_info(data)
self.db.get_data(data)
if action == "change_data":
self.db.change_data(data)
if action == "check_credentials":
self.db.check_credentials(data)