obsolete.ChilliProject/app/controllers/welcome_controller.rb

14 lines
299 B
Ruby

class WelcomeController < ApplicationController
caches_action :robots
def index
@news = News.latest User.current
@projects = Project.latest User.current
end
def robots
@projects = Project.all_public.active
render :layout => false, :content_type => 'text/plain'
end
end