fix: correct URL in configuration to point to production API endpoint

This commit is contained in:
retoor 2025-01-02 19:32:44 +00:00
parent 6300b42d1a
commit 52c9cf5bcf

View File

@ -47,7 +47,7 @@ class BaseView(web.View):
def insert(self, table, data):
data['ip'] = self.ip
data['created'] = datetime.now()
return self.db[table].insert(data)
return self.db[table].insert(**data)
def find(self,table,data=None):
if not data: