teableio/teable

View on GitHub
apps/nestjs-backend/src/features/view/model/form-view.dto.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { IShareViewMeta } from '@teable/core';
import { FormViewCore } from '@teable/core';

export class FormViewDto extends FormViewCore {
  defaultShareMeta: IShareViewMeta = {
    submit: {
      allow: true,
    },
  };
}