🔐 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
@@ -78,6 +78,8 @@ export class DriveFile {
export type AccessInformation = {
public?: {
token: string;
password: string;
expiration: number;
level: publicAccessLevel;
};
entities: AuthEntity[];