20
21
22
23
24
25
26
27
28
|
# File 'app/controllers/rdf_controller.rb', line 20
def scheme
respond_to do |format|
format.html { redirect_to about_path }
format.any do
authorize! :read, Iqvoc::Concept.root_class.instance
@top_concepts = Iqvoc::Concept.base_class.tops.published.all
end
end
end
|