* Provide security information about owned shares * Add visitor count display for shares with max views * Add password protection indicator to shares table * Remove validation from MyShareSecurityDTO * center lock icon and add spacing * refactor: run formatter --------- Co-authored-by: Elias Schneider <login@eliasschneider.com>
10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
import { Expose } from "class-transformer";
|
|
|
|
export class MyShareSecurityDTO {
|
|
@Expose()
|
|
passwordProtected: boolean;
|
|
|
|
@Expose()
|
|
maxViews: number;
|
|
}
|