7 lines
104 B
Ruby
7 lines
104 B
Ruby
|
class ArtistController < ApplicationController
|
||
|
|
||
|
def view
|
||
|
@artist = Artist.find(params[:id])
|
||
|
end
|
||
|
end
|