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

7 lines
104 B
Ruby

class ArtistController < ApplicationController
def view
@artist = Artist.find(params[:id])
end
end