fix: add missing pass to submit method in BaseFormView to prevent syntax error

This commit is contained in:
2025-03-27 16:30:06 +00:00
parent dc21d63f3b
commit 97db9b657f
+1
View File
@@ -70,3 +70,4 @@ class BaseFormView(BaseView):
return await self.json_response(result)
async def submit(self, model=None):
pass