1
0
Fork 0
oldhaven/rails/app/controllers/artist_controller.rb

6 lines
111 B
Ruby
Raw Normal View History

2011-04-03 16:21:05 +00:00
class ArtistController < ApplicationController
def view
@artist = Artists.getByName(params[:name])
end
end