13 lines
468 B
Ruby
13 lines
468 B
Ruby
class ArtistCommentaryVersionsController < ApplicationController
|
|
respond_to :html, :xml, :json
|
|
|
|
def index
|
|
@commentary_versions = ArtistCommentaryVersion.search(params[:search]).order("artist_commentary_versions.id desc").paginate(params[:page], :limit => params[:limit])
|
|
respond_with(@commentary_versions) do |format|
|
|
format.xml do
|
|
render :xml => @commentary_versions.to_xml(:root => "artist-commentary-versions")
|
|
end
|
|
end
|
|
end
|
|
end
|