Skip to content
Snippets Groups Projects
Commit 565a5b7e authored by Matheus Agio Nerone's avatar Matheus Agio Nerone
Browse files

Merge branch 'create-learningobject-relations' into fix-welcome-controller

parents 501520ea 59469fd2
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,10 @@ class Subject
attr_accessor :id, :date_creation, :description, :highlights, :name,
:learning_objects
def highlights
@highlights ||= subject_repository.get_highlights(self)
end
def learning_objects
@learning_objects ||= subject_repository.get_learning_objects(self)
end
......
......@@ -21,6 +21,11 @@ module OrientDb
Portalmec::Application.repository.for(:learning_object).build_objects(result)
end
def get_highlights(subject)
result = connection.query "SELECT expand(highlights) FROM #{subject.id}"
Portalmec::Application.repository.for(:learning_object).build_objects(result)
end
def build_hash
hash = super
hash.delete("learning_objects")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment