home_controller.rb revision bfc514af6689625b37fd784148c7e627504949f3
#
# 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