You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Ensure we delete boards owned by a circle when the circle gets deleted
following the same behavior for users
* make sure findAllByOwner is explicit about the type of ownership
* Move 'PERMISSION_OWNER' to a sane spot
* Fix the annotateAclRetainedAccess missing the owning circle's ACL entry
Signed-off-by: Jos Poortvliet <jospoortvliet@gmail.com>
$output->writeln('<error>Ambiguous source owner: ' . $owner . ' matches both a user and a team (circle ID). Use --from-team if you mean the team.</error>');
107
+
return1;
108
+
}
109
+
110
+
if ($ownerCircleExists && !$ownerUserExists) {
111
+
$ownerType = Acl::PERMISSION_TYPE_CIRCLE;
112
+
}
113
+
}
84
114
if ($toTeam) {
85
115
$newOwnerType = Acl::PERMISSION_TYPE_CIRCLE;
86
116
if ($this->circlesService->isCirclesEnabled()) {
@@ -154,7 +184,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
0 commit comments