class RESTFramework::BaseFilter
Public Class Methods
new(controller:)
click to toggle source
# File lib/rest_framework/filters.rb, line 2 def initialize(controller:) @controller = controller end
Public Instance Methods
get_filtered_data(data)
click to toggle source
# File lib/rest_framework/filters.rb, line 6 def get_filtered_data(data) raise NotImplementedError end