9 lines
137 B
Ruby
9 lines
137 B
Ruby
class AntiVotersController < ApplicationController
|
|
before_filter :member_only
|
|
|
|
def index
|
|
@anti_voters = AntiVoter.all
|
|
end
|
|
end
|
|
|