Files
danbooru/app/controllers/artist_versions_controller.rb
2013-01-07 15:58:42 -05:00

9 lines
230 B
Ruby

class ArtistVersionsController < ApplicationController
respond_to :html, :xml, :json
def index
@artist_versions = ArtistVersion.search(params[:search]).paginate(params[:page])
respond_with(@artist_versions)
end
end