9 lines
247 B
Ruby
9 lines
247 B
Ruby
class ArtistVersionsController < ApplicationController
|
|
respond_to :html, :xml, :json
|
|
|
|
def index
|
|
@artist_versions = ArtistVersion.search(params[:search]).order("id desc").paginate(params[:page])
|
|
respond_with(@artist_versions)
|
|
end
|
|
end
|