Skip to content
Snippets Groups Projects
Unverified Commit 26b1164c authored by Sébastien Gaya's avatar Sébastien Gaya
Browse files

fix extranet data

parent 58854584
No related branches found
No related tags found
No related merge requests found
...@@ -104,11 +104,19 @@ class Communication::Extranet < ApplicationRecord ...@@ -104,11 +104,19 @@ class Communication::Extranet < ApplicationRecord
alias academic_years years alias academic_years years
def organizations def organizations
about&.alumni_organizations || connected_organizations if about.present? && about.respond_to?(:alumni_organizations)
about.alumni_organizations
else
connected_organizations
end
end end
def experiences def experiences
about&.alumni_experiences if about.present? && about.respond_to?(:alumni_experiences)
about.alumni_experiences
else
experiences_through_connections
end
end end
def url def url
......
...@@ -27,4 +27,8 @@ module Communication::Extranet::WithConnections ...@@ -27,4 +27,8 @@ module Communication::Extranet::WithConnections
University::Person.where(id: ids) University::Person.where(id: ids)
end end
def experiences_through_connections
University::Person::Experience.where(person_id: connected_persons, organization_id: connected_organizations)
end
end end
\ No newline at end of file
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