10 lines
252 B
Ruby
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
|