Skip to content

Commit 260db46

Browse files
committed
docs: add docs for clone row plugin
1 parent 217f98b commit 260db46

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
File renamed without changes.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Clone row
2+
3+
Allows to deactivate users accound without deleting it.
4+
5+
6+
## Instalation
7+
8+
To install the plugin:
9+
10+
```bash
11+
npm install @adminforth/clone-row --save
12+
```
13+
14+
## Setting up
15+
16+
To setup the plugin just add it to your resource:
17+
18+
```ts .title="./resources/apartments.ts"
19+
import CloneRow from "@adminforth/CloneRow";
20+
21+
...
22+
23+
plugins: [
24+
25+
...
26+
//diff-add
27+
new CloneRow({}),
28+
...
29+
30+
]
31+
```
32+

0 commit comments

Comments
 (0)