serial no removal

This commit is contained in:
Seth Call 2017-02-08 08:25:07 -06:00
parent 1b8a6dd01b
commit 220ab8ee1b
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ ActiveAdmin.register JamRuby::Jamblaster, :as => 'Jamblaster' do
menu :label => 'JamBlasters', :parent => 'JamBlaster'
scope("Connected", default: true) { |scope| scope.where('client_id in (select client_id from connections)').where("serial_no != 'false'") }
scope("Connected", default: true) { |scope| scope.where('client_id in (select client_id from connections)') }
scope("All") { |scope| scope.order('created_at desc') }
form do |f|