aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/store/actions/workspace.action.ts
blob: c7f18e0ac657af0b55d195d6e573e6ae541cf442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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) {
    }
}