Skip to content

FormioPermission

@tsed/formio-types

Usage

typescript
import { FormioPermission } from "@tsed/formio-types";

See /packages/third-parties/formio-types/src/types/domain/FormioPermission.ts.

Overview

ts
interface FormioPermission {
    type: "create_all" | "read_all" | "update_all" | "delete_all" | "create_own" | "read_own" | "update_own" | "delete_own" | "self";
    roles: string[];
}

type

ts
type: "create_all" | "read_all" | "update_all" | "delete_all" | "create_own" | "read_own" | "update_own" | "delete_own" | "self";

roles

ts
roles: string[];

Released under the MIT License.