praxis 2.0.pre.3 → 2.0.pre.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. checksums.yaml +5 -5
  2. data/.rspec +0 -1
  3. data/.ruby-version +1 -0
  4. data/CHANGELOG.md +26 -0
  5. data/Gemfile +1 -1
  6. data/Guardfile +2 -1
  7. data/Rakefile +1 -7
  8. data/TODO.md +28 -0
  9. data/lib/api_browser/package-lock.json +7110 -0
  10. data/lib/praxis.rb +7 -4
  11. data/lib/praxis/action_definition.rb +9 -16
  12. data/lib/praxis/api_general_info.rb +21 -0
  13. data/lib/praxis/application.rb +1 -2
  14. data/lib/praxis/bootloader_stages/routing.rb +2 -4
  15. data/lib/praxis/docs/generator.rb +11 -6
  16. data/lib/praxis/docs/open_api_generator.rb +255 -0
  17. data/lib/praxis/docs/openapi/info_object.rb +31 -0
  18. data/lib/praxis/docs/openapi/media_type_object.rb +59 -0
  19. data/lib/praxis/docs/openapi/operation_object.rb +40 -0
  20. data/lib/praxis/docs/openapi/parameter_object.rb +69 -0
  21. data/lib/praxis/docs/openapi/paths_object.rb +55 -0
  22. data/lib/praxis/docs/openapi/request_body_object.rb +51 -0
  23. data/lib/praxis/docs/openapi/response_object.rb +63 -0
  24. data/lib/praxis/docs/openapi/responses_object.rb +44 -0
  25. data/lib/praxis/docs/openapi/schema_object.rb +87 -0
  26. data/lib/praxis/docs/openapi/server_object.rb +24 -0
  27. data/lib/praxis/docs/openapi/tag_object.rb +21 -0
  28. data/lib/praxis/extensions/attribute_filtering.rb +2 -0
  29. data/lib/praxis/extensions/attribute_filtering/active_record_filter_query_builder.rb +148 -157
  30. data/lib/praxis/extensions/attribute_filtering/active_record_patches.rb +15 -0
  31. data/lib/praxis/extensions/attribute_filtering/active_record_patches/5x.rb +90 -0
  32. data/lib/praxis/extensions/attribute_filtering/active_record_patches/6_0.rb +68 -0
  33. data/lib/praxis/extensions/attribute_filtering/active_record_patches/6_1_plus.rb +58 -0
  34. data/lib/praxis/extensions/attribute_filtering/filter_tree_node.rb +35 -0
  35. data/lib/praxis/extensions/attribute_filtering/filtering_params.rb +13 -12
  36. data/lib/praxis/extensions/attribute_filtering/sequel_filter_query_builder.rb +3 -2
  37. data/lib/praxis/extensions/field_selection/active_record_query_selector.rb +7 -9
  38. data/lib/praxis/extensions/field_selection/field_selector.rb +4 -0
  39. data/lib/praxis/extensions/field_selection/sequel_query_selector.rb +6 -9
  40. data/lib/praxis/extensions/pagination.rb +130 -0
  41. data/lib/praxis/extensions/pagination/active_record_pagination_handler.rb +42 -0
  42. data/lib/praxis/extensions/pagination/header_generator.rb +70 -0
  43. data/lib/praxis/extensions/pagination/ordering_params.rb +238 -0
  44. data/lib/praxis/extensions/pagination/pagination_handler.rb +68 -0
  45. data/lib/praxis/extensions/pagination/pagination_params.rb +378 -0
  46. data/lib/praxis/extensions/pagination/sequel_pagination_handler.rb +45 -0
  47. data/lib/praxis/handlers/json.rb +2 -0
  48. data/lib/praxis/handlers/www_form.rb +5 -0
  49. data/lib/praxis/handlers/{xml.rb → xml-sample.rb} +6 -0
  50. data/lib/praxis/links.rb +4 -0
  51. data/lib/praxis/mapper/active_model_compat.rb +23 -5
  52. data/lib/praxis/mapper/resource.rb +16 -9
  53. data/lib/praxis/mapper/selector_generator.rb +11 -10
  54. data/lib/praxis/mapper/sequel_compat.rb +1 -0
  55. data/lib/praxis/media_type.rb +1 -56
  56. data/lib/praxis/multipart/part.rb +5 -2
  57. data/lib/praxis/plugins/mapper_plugin.rb +1 -1
  58. data/lib/praxis/plugins/pagination_plugin.rb +71 -0
  59. data/lib/praxis/resource_definition.rb +4 -12
  60. data/lib/praxis/response_definition.rb +1 -1
  61. data/lib/praxis/route.rb +2 -4
  62. data/lib/praxis/routing_config.rb +4 -8
  63. data/lib/praxis/tasks/api_docs.rb +23 -0
  64. data/lib/praxis/tasks/routes.rb +10 -15
  65. data/lib/praxis/types/media_type_common.rb +10 -0
  66. data/lib/praxis/types/multipart_array.rb +62 -0
  67. data/lib/praxis/validation_handler.rb +1 -2
  68. data/lib/praxis/version.rb +1 -1
  69. data/praxis.gemspec +4 -5
  70. data/spec/functional_spec.rb +9 -6
  71. data/spec/praxis/action_definition_spec.rb +4 -16
  72. data/spec/praxis/api_general_info_spec.rb +6 -6
  73. data/spec/praxis/extensions/attribute_filtering/active_record_filter_query_builder_spec.rb +304 -0
  74. data/spec/praxis/extensions/attribute_filtering/filter_tree_node_spec.rb +39 -0
  75. data/spec/praxis/extensions/attribute_filtering/filtering_params_spec.rb +34 -0
  76. data/spec/praxis/extensions/field_expansion_spec.rb +6 -24
  77. data/spec/praxis/extensions/field_selection/active_record_query_selector_spec.rb +15 -11
  78. data/spec/praxis/extensions/field_selection/sequel_query_selector_spec.rb +4 -3
  79. data/spec/praxis/extensions/pagination/active_record_pagination_handler_spec.rb +130 -0
  80. data/spec/praxis/extensions/{field_selection/support → support}/spec_resources_active_model.rb +45 -2
  81. data/spec/praxis/extensions/{field_selection/support → support}/spec_resources_sequel.rb +0 -0
  82. data/spec/praxis/mapper/selector_generator_spec.rb +32 -0
  83. data/spec/praxis/media_type_spec.rb +5 -129
  84. data/spec/praxis/request_spec.rb +3 -22
  85. data/spec/praxis/resource_definition_spec.rb +1 -1
  86. data/spec/praxis/response_definition_spec.rb +8 -9
  87. data/spec/praxis/route_spec.rb +2 -9
  88. data/spec/praxis/routing_config_spec.rb +4 -13
  89. data/spec/praxis/types/multipart_array_spec.rb +4 -21
  90. data/spec/spec_app/config/environment.rb +0 -2
  91. data/spec/spec_app/design/api.rb +7 -1
  92. data/spec/spec_app/design/media_types/instance.rb +0 -8
  93. data/spec/spec_app/design/media_types/volume.rb +0 -12
  94. data/spec/spec_app/design/resources/instances.rb +1 -2
  95. data/spec/spec_helper.rb +6 -0
  96. data/spec/support/spec_media_types.rb +0 -73
  97. metadata +51 -49
  98. data/spec/praxis/handlers/xml_spec.rb +0 -177
  99. data/spec/praxis/links_spec.rb +0 -68
@@ -0,0 +1,45 @@
1
+ require_relative 'pagination_handler'
2
+
3
+ module Praxis
4
+ module Extensions
5
+ module Pagination
6
+ class SequelPaginationHandler < PaginationHandler
7
+
8
+ def self.where_lt(query, attr, value)
9
+ query.where("#{attr} < ?", value)
10
+ end
11
+
12
+ def self.where_gt(query, attr, value)
13
+ query.where("#{attr} > ?", value)
14
+ end
15
+
16
+ def self.order(query, order)
17
+ return query unless order
18
+ order_clause = order.map do |spec_hash|
19
+ direction, name = spec_hash.first
20
+ case direction.to_sym
21
+ when :desc
22
+ Sequel.desc(name.to_sym)
23
+ else
24
+ Sequel.asc(name.to_sym)
25
+ end
26
+ end
27
+ query = query.order(*order_clause)
28
+ query
29
+ end
30
+
31
+ def self.count(query)
32
+ query.count
33
+ end
34
+
35
+ def self.offset(query, offset)
36
+ query.offset(offset)
37
+ end
38
+
39
+ def self.limit(query, limit)
40
+ query.limit(limit)
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
@@ -17,6 +17,8 @@ module Praxis
17
17
  # @param [String] document
18
18
  # @return [Hash,Array] the structured-data representation of the document
19
19
  def parse(document)
20
+ # Try to be nice and accept an empty string as an empty payload (seems nice to do for dumb http clients)
21
+ return nil if (document.nil? || document == '')
20
22
  ::JSON.parse(document)
21
23
  end
22
24
 
@@ -1,3 +1,8 @@
1
+ # This is an example of a handler that can load and generate www-url-encoded payloads.
2
+ # Note that if you use your API to pass nil values for attributes as a way to unset their
3
+ # values, this handler will not work (as there isn't necessarily a defined "null" value in
4
+ # this encoding (although you can probably define how to encode/decode it and use it as such)
5
+ # Use at your own risk.
1
6
  module Praxis
2
7
  module Handlers
3
8
  class WWWForm
@@ -1,3 +1,9 @@
1
+ # This is an example of a handler that can load and generate 'activesupport-style' xml payloads.
2
+ # Note that if you use your API to pass nil values for attributes as a way to unset their values,
3
+ # this handler will not work (as there isn't necessarily a defined "null" value in this encoding
4
+ # (although you can probably define how to encode/decode it and use it as such)
5
+ # Use at your own risk
6
+
1
7
  module Praxis
2
8
  module Handlers
3
9
  class XML
@@ -54,6 +54,10 @@ module Praxis
54
54
  super(false,**opts) # Links must always describe attributes
55
55
  end
56
56
 
57
+ def self.json_schema_type
58
+ @attribute.type.json_schema_type
59
+ end
60
+
57
61
  def self._finalize!
58
62
  super
59
63
  if @attribute
@@ -3,6 +3,7 @@
3
3
  require 'active_support/concern'
4
4
 
5
5
  require 'praxis/extensions/field_selection/active_record_query_selector'
6
+ require 'praxis/extensions/attribute_filtering/active_record_filter_query_builder'
6
7
 
7
8
  module Praxis
8
9
  module Mapper
@@ -15,7 +16,7 @@ module Praxis
15
16
 
16
17
  module ClassMethods
17
18
  def _filter_query_builder_class
18
- Praxis::Extensions::ActiveRecordFilterQueryBuilder
19
+ Praxis::Extensions::AttributeFiltering::ActiveRecordFilterQueryBuilder
19
20
  end
20
21
 
21
22
  def _field_selector_query_builder_class
@@ -57,19 +58,36 @@ module Praxis
57
58
  end
58
59
  end
59
60
 
61
+ def _join_foreign_key_for(assoc_reflection)
62
+ maj, min, _ = ActiveRecord.gem_version.segments
63
+ if maj >= 6 && min >=1
64
+ assoc_reflection.join_foreign_key.to_sym
65
+ else
66
+ assoc_reflection.join_keys.foreign_key.to_sym
67
+ end
68
+ end
69
+
70
+ def _join_primary_key_for(assoc_reflection)
71
+ maj, min, _ = ActiveRecord.gem_version.segments
72
+ if maj >= 6 && min >=1
73
+ assoc_reflection.join_primary_key.to_sym
74
+ else
75
+ assoc_reflection.join_keys.key.to_sym
76
+ end
77
+ end
60
78
  private
61
79
  def local_columns_used_for_the_association(type, assoc_reflection)
62
80
  case type
63
81
  when :one_to_many
64
82
  # The associated table will point to us by key (usually the PK, but not always)
65
- [assoc_reflection.join_keys.foreign_key.to_sym]
83
+ [_join_foreign_key_for(assoc_reflection)]
66
84
  when :many_to_one
67
85
  # We have the FKs to the associated model
68
- [assoc_reflection.join_keys.foreign_key.to_sym]
86
+ [_join_foreign_key_for(assoc_reflection)]
69
87
  when :many_to_many
70
88
  ref = resolve_closest_through_reflection(assoc_reflection)
71
89
  # The associated middle table will point to us by key (usually the PK, but not always)
72
- [ref.join_keys.foreign_key.to_sym] # The foreign key that the last through table points to
90
+ [_join_foreign_key_for(ref)] # The foreign key that the last through table points to
73
91
  else
74
92
  raise "association type #{type} not supported"
75
93
  end
@@ -80,7 +98,7 @@ module Praxis
80
98
  # will always get us the right column
81
99
  case type
82
100
  when :one_to_many, :many_to_one, :many_to_many
83
- [assoc_reflection.join_keys.key.to_sym]
101
+ [_join_primary_key_for(assoc_reflection)]
84
102
  else
85
103
  raise "association type #{type} not supported"
86
104
  end
@@ -196,17 +196,24 @@ module Praxis::Mapper
196
196
  end
197
197
 
198
198
  # TODO: this shouldn't be needed if we incorporate it with the properties of the mapper...
199
- def self.filters_mapping(hash)
200
- @_filter_query_builder_class = model._filter_query_builder_class.for(**hash)
201
- end
202
-
203
- def self._filter_query_builder_class
204
- @_filter_query_builder_class
199
+ # ...maybe what this means is that we can change it for a better DSL in the resource?
200
+ def self.filters_mapping(definition)
201
+ @_filters_map = \
202
+ case definition
203
+ when Hash
204
+ definition
205
+ when Array
206
+ definition.each_with_object({}) { |item, hash| hash[item.to_sym] = item }
207
+ else
208
+ raise "Resource.filters_mapping only allows a hash or an array"
209
+ end
205
210
  end
206
211
 
207
212
  def self.craft_filter_query(base_query, filters:) # rubocop:disable Metrics/AbcSize
208
- if filters && _filter_query_builder_class
209
- base_query = _filter_query_builder_class.new(query: base_query, model: model).build_clause(filters)
213
+ if filters
214
+ raise "Must define the mapping of filters if want to use Filtering for resource: #{self}" unless @_filters_map
215
+ debug = Praxis::Application.instance.config.mapper.debug_queries
216
+ base_query = model._filter_query_builder_class.new(query: base_query, model: model, filters_map: @_filters_map, debug: debug).generate(filters)
210
217
  end
211
218
 
212
219
  base_query
@@ -215,7 +222,7 @@ module Praxis::Mapper
215
222
  def self.craft_field_selection_query(base_query, selectors:) # rubocop:disable Metrics/AbcSize
216
223
  if selectors && model._field_selector_query_builder_class
217
224
  debug = Praxis::Application.instance.config.mapper.debug_queries
218
- base_query = model._field_selector_query_builder_class.new(query: base_query, selectors: selectors).generate(debug: debug)
225
+ base_query = model._field_selector_query_builder_class.new(query: base_query, selectors: selectors, debug: debug).generate
219
226
  end
220
227
 
221
228
  base_query
@@ -19,9 +19,10 @@ module Praxis::Mapper
19
19
  end
20
20
 
21
21
  def map_property(name, fields)
22
+ praxis_compat_model = resource.model && resource.model.respond_to?(:_praxis_associations)
22
23
  if resource.properties.key?(name)
23
24
  add_property(name, fields)
24
- elsif resource.model._praxis_associations.key?(name)
25
+ elsif praxis_compat_model && resource.model._praxis_associations.key?(name)
25
26
  add_association(name, fields)
26
27
  else
27
28
  add_select(name)
@@ -41,10 +42,6 @@ module Praxis::Mapper
41
42
  association[:local_key_columns].each {|col| add_select(col) }
42
43
 
43
44
  node = SelectorGeneratorNode.new(associated_resource)
44
- if association[:remote_key_columns].nil?
45
- binding.pry
46
- puts association
47
- end
48
45
  unless association[:remote_key_columns].empty?
49
46
  # Make sure we add the required columns for this association to the remote model query
50
47
  fields = {} if fields == true
@@ -68,13 +65,18 @@ module Praxis::Mapper
68
65
  def add_property(name, fields)
69
66
  dependencies = resource.properties[name][:dependencies]
70
67
  # Always add the underlying association if we're overriding the name...
71
- add_association(name, fields) if resource.model._praxis_associations.key?(name)
68
+ praxis_compat_model = resource.model && resource.model.respond_to?(:_praxis_associations)
69
+ if praxis_compat_model && resource.model._praxis_associations.key?(name)
70
+ add_association(name, fields)
71
+ end
72
72
  if dependencies
73
73
  dependencies.each do |dependency|
74
74
  # To detect recursion, let's allow mapping depending fields to the same name of the property
75
75
  # but properly detecting if it's a real association...in which case we've already added it above
76
- if dependency == name
77
- add_select(name) unless resource.model._praxis_associations.key?(name)
76
+ if dependency == name
77
+ unless praxis_compat_model && resource.model._praxis_associations.key?(name)
78
+ add_select(name)
79
+ end
78
80
  else
79
81
  apply_dependency(dependency)
80
82
  end
@@ -112,12 +114,11 @@ module Praxis::Mapper
112
114
  existing.add_select(col_name)
113
115
  end
114
116
  node.tracks.each do |name, n|
115
- existing.merge(name, n)
117
+ existing.merge_track(name, n)
116
118
  end
117
119
  else
118
120
  self.tracks[track_name] = node
119
121
  end
120
-
121
122
  end
122
123
 
123
124
  def dump
@@ -11,6 +11,7 @@ module Praxis::Mapper
11
11
 
12
12
  module ClassMethods
13
13
  def _filter_query_builder_class
14
+ # TODO: refactor the query builder, and add the explicit require in this file
14
15
  Praxis::Extensions::SequelFilterQueryBuilder
15
16
  end
16
17
 
@@ -7,15 +7,12 @@ module Praxis
7
7
  # encodings; for example, a controller might respond with an actual Widget object, but a
8
8
  # Content-Type header specifying 'application/vnd.acme.widget+json'; Praxis uses the information
9
9
  # contained in the media-type definition of Widget to transform the object into an equivalent
10
- # JSON representation. If the content type ends with '+xml' instead, and the XML handler is
11
- # registered with the framework, Praxis will respond with an XML representation of the
12
- # widget. The use of media types allows your application's models to be decoupled from its
10
+ # JSON representation. The use of media types allows your application's models to be decoupled from its
13
11
  # HTTP interface specification.
14
12
  #
15
13
  # A media type definition consists of:
16
14
  # - a MIME type identifier
17
15
  # - attributes, each of which has a name and a data type
18
- # - named links to other resources
19
16
  # - named views, which expose interesting subsets of attributes
20
17
  #
21
18
  # @example Declare a widget type that's used by my supply-chain management app
@@ -37,16 +34,6 @@ module Praxis
37
34
  # description: 'The factory in which this widget was produced'
38
35
  # end
39
36
  #
40
- # links do
41
- # link :factory,
42
- # description: 'Link to the factory in which this widget was produced'
43
- # end
44
- #
45
- # # If widgets can be linked-to by other resources, they should have a link view
46
- # view :link do
47
- # attribute :href
48
- # end
49
- #
50
37
  # # All resources should have a default view
51
38
  # view :default do
52
39
  # attribute :id
@@ -58,32 +45,6 @@ module Praxis
58
45
 
59
46
  include Types::MediaTypeCommon
60
47
 
61
- class DSLCompiler < Attributor::HashDSLCompiler
62
- def links(&block)
63
- attribute :links, Praxis::Links.for(options[:reference]), dsl_compiler: Links::DSLCompiler, &block
64
- end
65
- end
66
-
67
- def self.attributes(opts={}, &block)
68
- super(opts.merge(dsl_compiler: MediaType::DSLCompiler), &block)
69
- end
70
-
71
- def self._finalize!
72
- super
73
-
74
- # Only define our special links accessor if it was setup using the special DSL
75
- # (we might have an app defining an attribute called `links` on its own, in which
76
- # case we leave it be)
77
- if @attribute && self.attributes.key?(:links) && self.attributes[:links].type < Praxis::Links
78
- module_eval <<-RUBY, __FILE__, __LINE__ + 1
79
- def links
80
- self.class::Links.new(@object)
81
- end
82
- RUBY
83
- end
84
- end
85
-
86
-
87
48
  class FieldResolver
88
49
  def self.resolve(type,fields)
89
50
  self.new.resolve(type,fields)
@@ -118,30 +79,14 @@ module Praxis
118
79
 
119
80
 
120
81
  fields.each do |name, sub_fields|
121
- # skip links and do them below
122
- next if name == :links && defined?(type::Links)
123
82
 
124
83
  new_type = type.attributes[name].type
125
84
  result[name] = resolve(new_type, sub_fields)
126
85
  end
127
86
 
128
- # now to tackle whatever links there may be
129
- if defined?(type::Links) &&(links_fields = fields[:links])
130
- resolved_links = resolve_links(type::Links, links_fields)
131
- self.deep_merge(result, resolved_links)
132
- end
133
-
134
87
  result
135
88
  end
136
89
 
137
- def resolve_links(links_type, links)
138
- links.each_with_object({}) do |(name, link_fields), hash|
139
- using = links_type.links[name]
140
- new_type = links_type.attributes[name].type
141
- hash[using] = resolve(new_type, link_fields)
142
- end
143
- end
144
-
145
90
  # perform a deep recursive *in place* merge
146
91
  # form all values in +source+ onto +target+
147
92
  #
@@ -28,6 +28,10 @@ module Praxis
28
28
  self
29
29
  end
30
30
 
31
+ def self.json_schema_type
32
+ :object
33
+ end
34
+
31
35
  def self.example(context=nil, options:{})
32
36
  if (payload_attribute = options[:payload_attribute])
33
37
  payload = payload_attribute.example(context + ['payload'])
@@ -52,8 +56,7 @@ module Praxis
52
56
  headers_attribute: headers_attribute,
53
57
  filename_attribute: filename_attribute)
54
58
  end
55
-
56
-
59
+
57
60
  def self.describe(shallow=true, example: nil, options:{})
58
61
  hash = super(shallow, example: example)
59
62
 
@@ -1,5 +1,5 @@
1
1
  require 'singleton'
2
- require 'praxis/extensions/attribute_filtering/filtering_params'
2
+ require 'praxis/extensions/attribute_filtering'
3
3
 
4
4
  module Praxis
5
5
  module Plugins
@@ -0,0 +1,71 @@
1
+ require 'singleton'
2
+ require 'praxis/extensions/pagination'
3
+
4
+ # Simple plugin concept
5
+ # Example configuration for this plugin
6
+ # Praxis::Application.configure do |application|
7
+ # application.bootloader.use Praxis::Plugins::PaginationPlugin, {
8
+ # max_items: 500, # Unlimited by default,
9
+ # default_page_size: 100,
10
+ # disallow_paging_by_default: false,
11
+ # # See all available options below
12
+ # end
13
+ # end
14
+ #
15
+ # This would be applied to all controllers etc...so if one does not that
16
+ # It can easily add the `include Praxis::Extensions::Pagination` for every controller
17
+ # and use the class `Praxis::Types::PaginationParams.xxx yyy` stanzas to configure defaults
18
+
19
+ module Praxis
20
+ module Plugins
21
+ module PaginationPlugin
22
+ include Praxis::PluginConcern
23
+
24
+ class Plugin < Praxis::Plugin
25
+ include Singleton
26
+
27
+ def config_key
28
+ :pagination
29
+ end
30
+
31
+ def load_config!
32
+ @options || {}
33
+ end
34
+
35
+ def prepare_config!(node)
36
+ node.attributes do
37
+ attribute :max_items, Integer # Defaults to unlimited
38
+ attribute :default_page_size, Integer, default: Praxis::Types::PaginationParams.default_page_size
39
+ attribute :paging_default_mode, Hash, default: Praxis::Types::PaginationParams.paging_default_mode
40
+ attribute :disallow_paging_by_default, Attributor::Boolean, default: Praxis::Types::PaginationParams.disallow_paging_by_default
41
+ attribute :disallow_cursor_by_default, Attributor::Boolean, default: Praxis::Types::PaginationParams.disallow_cursor_by_default
42
+ attribute :disallow_cursor_by_default, Attributor::Boolean, default: Praxis::Types::PaginationParams.disallow_cursor_by_default
43
+ attribute :sorting do
44
+ attribute :enforce_all_fields, Attributor::Boolean, default: Praxis::Types::OrderingParams.enforce_all_fields
45
+ end
46
+ end
47
+ end
48
+
49
+ def setup!
50
+ self.config.each do |name, val|
51
+ if name == :sorting
52
+ val.each do |ordername, orderval|
53
+ Praxis::Types::OrderingParams.send(ordername, orderval)
54
+ end
55
+ else
56
+ Praxis::Types::PaginationParams.send(name, val)
57
+ end
58
+ end
59
+ end
60
+ end
61
+
62
+ module Controller
63
+ extend ActiveSupport::Concern
64
+
65
+ included do
66
+ include Praxis::Extensions::Pagination
67
+ end
68
+ end
69
+ end
70
+ end
71
+ end