6 lines
111 B
Ruby
6 lines
111 B
Ruby
class ArtistController < ApplicationController
|
|
def view
|
|
@artist = Artists.getByName(params[:name])
|
|
end
|
|
end
|