Now that reports.sobotics.org is down, it's useful to search Sentinel for Stack Overflow posts without feedback. Would it be possible to search by site in /search? Something like:
Site
<div class="field input-group">
<%= select_tag 'site', options_from_collection_for_select(Site.all, 'url', 'name'), :include_blank => true, :class => "form-control" %>
<span class="input-group-btn">
<%= submit_tag 'Search', :class => "btn btn-success" %>
</span>
</div>
if params[:site].present?
@results = @results.where('link LIKE ?', "%#{params[:site]}%")
end
Perhaps also add an option to filter posts by site in review, too.
Now that reports.sobotics.org is down, it's useful to search Sentinel for Stack Overflow posts without feedback. Would it be possible to search by site in
/search? Something like:Perhaps also add an option to filter posts by site in review, too.