* /artist_commentaries * /note_versions * /post_appeals * /post_flags * /posts/1/events * /super_voters
9 lines
174 B
Ruby
9 lines
174 B
Ruby
class SuperVotersController < ApplicationController
|
|
respond_to :html, :xml, :json
|
|
|
|
def index
|
|
@super_voters = SuperVoter.all
|
|
respond_with(@super_voters)
|
|
end
|
|
end
|