home_controller.rb revision a42b5e573f0b8441aefa0e72b76f1697ab739e91
#
# The home page that displays all latest news
#
class HomeController < ApplicationController
def show
@comments = Comment.latest.limit(10).all
@versions = OntologyVersion.latest.where(state: 'done').limit(10).all
@repositories = Repository.pub.latest.limit(10).all
end
end