Files
danbooru/app/controllers/artist_versions_controller.rb
2011-07-03 19:12:31 -04:00

10 lines
252 B
Ruby

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