7 lines
129 B
Ruby
7 lines
129 B
Ruby
class HomeController < ApplicationController
|
|
def index
|
|
@playlists = Playlist.all
|
|
@tracks = Track.latest
|
|
end
|
|
end
|