Module: RESTFramework::ReadOnlyModelControllerMixin
- Includes:
- BaseModelControllerMixin, ListModelMixin, ShowModelMixin
- Defined in:
- lib/rest_framework/controller_mixins/models.rb
Overview
Mixin that includes show/list mixins.
Class Method Summary collapse
Methods included from ShowModelMixin
Methods included from ListModelMixin
Methods included from BaseControllerMixin
Class Method Details
.included(base) ⇒ Object
279 280 281 282 283 |
# File 'lib/rest_framework/controller_mixins/models.rb', line 279 def self.included(base) if base.is_a? Class RESTFramework::BaseModelControllerMixin.included(base) end end |