Skip to content

Commit e9e49f8

Browse files
feat: able to set endpoints table (#3)
1 parent 9279f2b commit e9e49f8

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/NotFound/Layout/Elements/Table/LayoutTable.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,20 @@ public function setTotalItems(int $number)
5656
return $this;
5757
}
5858

59+
public function setDeleteEndpoint(string $endpoint)
60+
{
61+
$this->properties->deleteEndpoint = $endpoint;
62+
63+
return $this;
64+
}
65+
66+
public function setMoveEndpoint(string $endpoint)
67+
{
68+
$this->properties->moveEndpoint = $endpoint;
69+
70+
return $this;
71+
}
72+
5973
public function setCustomEditIcon(string $iconName)
6074
{
6175
$this->properties->editIcon = $iconName;

0 commit comments

Comments
 (0)