Files
danbooru/app/controllers/anti_voters_controller.rb
2016-09-19 16:47:55 -07:00

9 lines
137 B
Ruby

class AntiVotersController < ApplicationController
before_filter :member_only
def index
@anti_voters = AntiVoter.all
end
end