mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
select only my labels from all mindmap labels
This commit is contained in:
parent
c6b7e48d7a
commit
78859324a1
@ -99,8 +99,11 @@ public class RestMindmapInfo {
|
|||||||
}
|
}
|
||||||
public Set<RestLabel> getLabels() {
|
public Set<RestLabel> getLabels() {
|
||||||
final Set<RestLabel> result = new LinkedHashSet<>();
|
final Set<RestLabel> result = new LinkedHashSet<>();
|
||||||
|
final User me = Utils.getUser();
|
||||||
for (Label label : mindmap.getLabels()) {
|
for (Label label : mindmap.getLabels()) {
|
||||||
result.add(new RestLabel(label));
|
if (label.getCreator().equals(me)) {
|
||||||
|
result.add(new RestLabel(label));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user