aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/store/actions/workspace.action.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/ng2/store/actions/workspace.action.ts')
-rw-r--r--catalog-ui/src/app/ng2/store/actions/workspace.action.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/catalog-ui/src/app/ng2/store/actions/workspace.action.ts b/catalog-ui/src/app/ng2/store/actions/workspace.action.ts
new file mode 100644
index 0000000000..c7f18e0ac6
--- /dev/null
+++ b/catalog-ui/src/app/ng2/store/actions/workspace.action.ts
@@ -0,0 +1,17 @@
+/**
+ * Created by ob0695 on 7/17/2018.
+ */
+
+export class UpdateIsViewOnly {
+ static readonly type = '[WORKSPACE] UpdateIsViewOnly';
+
+ constructor(public isViewOnly:boolean) {
+ }
+}
+
+export class UpdateIsDesigner {
+ static readonly type = '[WORKSPACE] UpdateIsDesigner';
+
+ constructor(public isDesigner:boolean) {
+ }
+}