home_controller.rb 150 B

12345678
  1. # @author Dumitru Ursu
  2. # Controller for the landing page
  3. class HomeController < ApplicationController
  4. def index
  5. @courses = Course.all
  6. end
  7. end