oldhaven/rails/app/controllers/artist_controller.rb
2011-04-03 20:21:05 +04:00

6 lines
111 B
Ruby

class ArtistController < ApplicationController
def view
@artist = Artists.getByName(params[:name])
end
end