scube-server/app/controllers/home_controller.rb
2015-04-30 08:52:00 +00:00

7 lines
129 B
Ruby

class HomeController < ApplicationController
def index
@playlists = Playlist.all
@tracks = Track.latest
end
end