Module: RESTFramework::ModelControllerMixin
- Includes:
- BaseModelControllerMixin, CreateModelMixin, DestroyModelMixin, ListModelMixin, ShowModelMixin, UpdateModelMixin
- Defined in:
- lib/rest_framework/controller_mixins/models.rb
Overview
Mixin that includes all the CRUD mixins.
Class Method Summary collapse
Methods included from DestroyModelMixin
Methods included from UpdateModelMixin
Methods included from CreateModelMixin
Methods included from ShowModelMixin
Methods included from ListModelMixin
Methods included from BaseControllerMixin
Class Method Details
.included(base) ⇒ Object
246 247 248 249 250 |
# File 'lib/rest_framework/controller_mixins/models.rb', line 246 def self.included(base) if base.is_a? Class RESTFramework::BaseModelControllerMixin.included(base) end end |