add antivoters (no behavior yet)

This commit is contained in:
r888888888
2016-09-19 16:47:55 -07:00
parent bf2246f895
commit b2e6a8f031
5 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
class AntiVotersController < ApplicationController
before_filter :member_only
def index
@anti_voters = AntiVoter.all
end
end