class WelcomeController < ApplicationController
  def index
    redirect_to :action => :list
  end

  def list
    @jobs = Job.find(:all)
  end
end
