home_controller.rb revision 897c0c35ab149db8f96f8b4fffaac38f6966a1e6
#
# 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
end
end