This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Replace Harvest.app/Resources/m-h-stop.png with this image |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MyModel < ActiveRecord::Base | |
| belongs_to :owner, polymorphic: true | |
| ransacker :owner_name, formatter: proc { |value| | |
| # To use this, you have to know what all of the possible owner types can be. | |
| # For this example, the #owner_type could be either Group or Advertiser. | |
| # The fields we want to search on are: | |
| # Group#name | |
| # Advertiser#contact_name | |
| # |
OlderNewer