Skip to content

Commit

Permalink
Fixes #38062 - Fix scoped search for composite key for CVs
Browse files Browse the repository at this point in the history
  • Loading branch information
nadjaheitmann authored and sbernhard committed Dec 4, 2024
1 parent 7655a15 commit adfb230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/katello/content_view.rb
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class ContentView < Katello::Model
scoped_search :on => :name, :complete_value => true
scoped_search :on => :organization_id, :complete_value => true, :only_explicit => true, :validator => ScopedSearch::Validators::INTEGER
scoped_search :on => :label, :complete_value => true
scoped_search :on => :composite, :complete_value => true
scoped_search :on => :composite, :complete_value => { :true => true, :false => false }
scoped_search :on => :generated_for, :complete_value => true
scoped_search :on => :default # just for ordering
scoped_search :on => :name, :complete_value => true,
Expand Down

0 comments on commit adfb230

Please sign in to comment.