Skip to content
Snippets Groups Projects
Commit 0b70df81 authored by Arnaud Levy's avatar Arnaud Levy
Browse files

todo

parent 3af69abd
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,10 @@ module Communication::Website::WithDependencies
about.teachers
end
def people_in_blocks
[] # TODO
end
def people
@people ||= begin
people = []
......@@ -60,6 +64,7 @@ module Communication::Website::WithDependencies
people += teachers if has_teachers?
people += administrators if has_administrators?
people += researchers if has_researchers?
people += people_in_blocks if has_people_in_blocks?
people.uniq.compact
end
end
......@@ -104,6 +109,11 @@ module Communication::Website::WithDependencies
authors.compact.any?
end
def has_people_in_blocks?
# TODO
people_in_blocks.compact.any?
end
def has_persons?
has_authors? || has_administrators? || has_researchers? || has_teachers?
end
......
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