Commit 66b9bda9 by markotibold

All top level modules are included. Ready for diving into the modules and…

All top level modules are included. Ready for diving into the modules and documenting/ enhancing already existing docs.
parent 30478665
...@@ -11,7 +11,7 @@ __all__ = ( ...@@ -11,7 +11,7 @@ __all__ = (
'BaseView', 'BaseView',
'ModelView', 'ModelView',
'InstanceModelView', 'InstanceModelView',
'ListOrModelView', 'ListModelView',
'ListOrCreateModelView' 'ListOrCreateModelView'
) )
...@@ -131,7 +131,3 @@ class ListModelView(ListModelMixin, ModelView): ...@@ -131,7 +131,3 @@ class ListModelView(ListModelMixin, ModelView):
class ListOrCreateModelView(ListModelMixin, CreateModelMixin, ModelView): class ListOrCreateModelView(ListModelMixin, CreateModelMixin, ModelView):
"""A view which provides default operations for list and create, against a model in the database.""" """A view which provides default operations for list and create, against a model in the database."""
pass pass
...@@ -140,13 +140,17 @@ Library Reference ...@@ -140,13 +140,17 @@ Library Reference
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
library/resource
library/renderers
library/parsers
library/authentication library/authentication
library/validators library/compat
library/mixins
library/parsers
library/permissions
library/renderers
library/resource
library/response library/response
library/status library/status
library/validators
library/views
Examples Reference Examples Reference
------------------ ------------------
......
:mod:`compat`
=====================
.. automodule:: compat
:members:
:mod:`mixins`
=====================
.. automodule:: mixins
:members:
:mod:`permissions`
=====================
.. automodule:: permissions
:members:
:mod:`views`
=====================
.. automodule:: views
:members:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment