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

6 lines
111 B
Ruby

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