home_controller.rb revision 98e5579e27d05587d5602ed4bf7c09d4c2b6fcb1
#
# 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.latest.limit(10).all
end
end