Skip to content

Commit

Permalink
TASK: Move moveNodeStrategy to Neos UI
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed Nov 19, 2024
1 parent 98aac52 commit acc07c8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,6 @@ public static function default(): self
return self::STRATEGY_GATHER_ALL;
}

public static function fromName(string $name): ?self
{
foreach (self::cases() as $status) {
if ($name === $status->name) {
return $status;
}
}
return null;
}

public function jsonSerialize(): string
{
return $this->value;
Expand Down
2 changes: 0 additions & 2 deletions Neos.Neos/NodeTypes/Mixin/Content.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,3 @@
inspector:
editorOptions:
baseNodeType: 'Neos.Neos:Content'
options:
moveNodeStrategy: STRATEGY_SCATTER
2 changes: 0 additions & 2 deletions Neos.Neos/NodeTypes/Mixin/Document.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,3 @@
inspector:
group: 'visibility'
position: 40
options:
moveNodeStrategy: STRATEGY_GATHER_ALL

0 comments on commit acc07c8

Please sign in to comment.