🔐 Implement password and expiration date (#53)

* Implemented password and expiration date on conf and backend side

* Implemented password modal on shared side

* Add public link related tests

* Fix tests
This commit is contained in:
Romaric Mourgues
2023-05-16 16:39:35 +02:00
committed by GitHub
parent a378cd13e1
commit 4af8e43bb2
9 changed files with 464 additions and 33 deletions
@@ -37,6 +37,8 @@ export type DriveFileAccessLevel = 'none' | 'read' | 'write' | 'manage';
export type DriveItemAccessInfo = {
public?: {
token: string;
expiration?: number;
password?: string;
level: DriveFileAccessLevel;
};
entities: AuthEntity[];