Top Level Namespace
Defined Under Namespace
Modules: StreamChat
Instance Method Summary collapse
-
#get_sort_fields(sort) ⇒ Object
lib/util.rb.
Instance Method Details
#get_sort_fields(sort) ⇒ Object
lib/util.rb
5 6 7 8 9 10 11 |
# File 'lib/stream-chat/util.rb', line 5 def get_sort_fields(sort) sort_fields = [] sort&.each do |k, v| sort_fields << { field: k, direction: v } end sort_fields end |