teableio/teable

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

Summary

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

export class PluginViewDto extends PluginViewCore {
  defaultShareMeta: IShareViewMeta = {
    includeRecords: true,
  };
}