This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/ereuse_devicehub/resources/rent/definitions.py

9 lines
231 B
Python
Raw Normal View History

2020-11-17 12:19:50 +00:00
from ereuse_devicehub.resources.action import schemas
from teal.resource import Resource
from ereuse_devicehub.resources.rent.views import RentingView
2020-11-16 19:32:28 +00:00
class RentDef(Resource):
VIEW = RentingView
2020-11-17 12:19:50 +00:00
SCHEMA = schemas.Assigned