Skip to content

Commit

Permalink
fix bad includes
Browse files Browse the repository at this point in the history
  • Loading branch information
mjy committed Mar 27, 2020
1 parent cb82fbb commit 8536861
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/queries/person/filter.rb
Expand Up @@ -3,6 +3,10 @@ module Person

class Filter

# include Queries::Concerns::Identifiers
# include Queries::Concerns::Tags
# include Queries::Concerns::AlternateValues

# - use similar/identical methods in IsData
attr_accessor :limit_to_roles
attr_accessor :first_name, :last_name
Expand All @@ -18,10 +22,6 @@ def initialize(params)
@last_name = params[:last_name]
@last_name_starts_with = params[:last_name_starts_with]
@levenshtein_cuttoff = params[:levenshtein_cuttoff] || 4

set_identifier(params)
set_tags_params(params)
set_alternate_value(params)
end

# @return [Arel::Table]
Expand Down

0 comments on commit 8536861

Please sign in to comment.