Skip to content

Commit 6679bea

Browse files
committed
add detail link to form
1 parent 2202a66 commit 6679bea

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

projects/fusio-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-fusio-sdk",
3-
"version": "6.0.8",
3+
"version": "6.0.9",
44
"description": "SDK to integrate Fusio into an Angular app",
55
"keywords": [
66
"Fusio",

projects/fusio-sdk/src/lib/abstract/form.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,13 @@ export abstract class Form<T> implements OnInit {
8080
return this.getService().getLink();
8181
}
8282

83+
public getDetailLink(id: any): Array<string>
84+
{
85+
const link = this.getService().getLink();
86+
link.push('' + id)
87+
return link;
88+
}
89+
8390
protected abstract getService(): Service<T>;
8491

8592
protected onLoad(): void

0 commit comments

Comments
 (0)