Files
danbooru/app/controllers/super_voters_controller.rb

9 lines
140 B
Ruby

class SuperVotersController < ApplicationController
before_filter :member_only
def index
@super_voters = SuperVoter.all
end
end