scube-server/app/controllers/home_controller.rb
2011-07-27 22:10:22 +00:00

7 lines
124 B
Ruby

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