Shared services
Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit

This commit is contained in:
2026-02-23 15:22:32 +01:00
parent 5e84eb4404
commit 18092fcc24
8 changed files with 194 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
export interface IAclRights {
id?: number,
claim: any,
expires: Date,
rights: number,
owner: any,
deep: boolean
}

View File

@@ -0,0 +1,6 @@
import { IItem } from '@farmmaps/common';
import { IAclRights } from './acl.rights';
export interface IListItemAclRights extends IItem {
aclRights: IAclRights[]
}

View File

@@ -0,0 +1,13 @@
import { IUser } from '@farmmaps/common';
export interface ISharedItem {
code: string,
name: string,
type: string,
sharedToUser: IUser,
rights: Date,
expires: Date,
dataDate: Date,
childItems: ISharedItem[]
}