6 lines
97 B
Ruby
6 lines
97 B
Ruby
class HomeController < ApplicationController
|
|
def index
|
|
@playlists = Playlist.all
|
|
end
|
|
end
|