aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/CurrentUserUtils.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-06-16 09:28:00 -0400
committerbobzel <zzzman@gmail.com>2022-06-16 09:28:00 -0400
commit950440f9c73746867454e20f0e5c3a38297728b9 (patch)
tree60c74e673a873aa9858825c54d18fc141a061807 /src/client/util/CurrentUserUtils.ts
parent0706f875f2869111699cd11c43f65e792ece7d7e (diff)
added unviewed shared dashboards to dashboard view
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r--src/client/util/CurrentUserUtils.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts
index c0318e86b..3085e7e72 100644
--- a/src/client/util/CurrentUserUtils.ts
+++ b/src/client/util/CurrentUserUtils.ts
@@ -1286,6 +1286,7 @@ export class CurrentUserUtils {
public static get ActivePresentation() { return Cast(Doc.UserDoc().activePresentation, Doc, null); }
public static get MyRecentlyClosed() { return Cast(Doc.UserDoc().myRecentlyClosedDocs, Doc, null); }
public static get MyDashboards() { return Cast(Doc.UserDoc().myDashboards, Doc, null); }
+ public static get MySharedDocs() { return Cast(Doc.UserDoc().mySharedDocs, Doc, null); }
public static get EmptyPane() { return Cast(Doc.UserDoc().emptyPane, Doc, null); }
public static get OverlayDocs() { return DocListCast((Doc.UserDoc().myOverlayDocs as Doc)?.data); }
public static set SelectedTool(tool: InkTool) { Doc.UserDoc().activeInkTool = tool; }