* Add support to grant private access with permissions * Update changelog --------- Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
import { AccessType } from '@ghostfolio/common/types';
|
|
import { AccessPermission } from '@prisma/client';
|
|
|
|
export interface Access {
|
|
alias?: string;
|
|
grantee?: string;
|
|
id: string;
|
|
permissions: AccessPermission[];
|
|
type: AccessType;
|
|
}
|