I have a homepage view in my rails app and I also have two types of content, articles and events. I'd like to have a partial on the homepage that displays the most recent articles and events together (mixed, like a news feed). Articles should be sorted by created_at and events should be sorted by start_date together.
My question is how do I create a single partial to show the two types of content arrays in a single array and sort them both properly? Do I create a method and place it in the home_controller to do this?
Thanks
This is how you merge results and a rough implementation of a custom search. I haven't tested the search so no guarantees it works.