[REF] pms-api-rest: add controller 4 login

This commit is contained in:
miguelpadin
2021-12-27 11:31:35 +01:00
committed by Darío Lodeiros
parent b3ed4109bb
commit 6f672029f5
14 changed files with 156 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
from marshmallow import fields
from odoo.addons.datamodel.core import Datamodel
class PmsApiRestUserInput(Datamodel):
_name = "pms.api.rest.user.input"
username = fields.String(required=False, allow_none=True)
password = fields.String(required=False, allow_none=True)