teableio/teable

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

Summary

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

export class KanbanViewDto extends KanbanViewCore {
  defaultShareMeta: IShareViewMeta = {
    includeRecords: true,
  };
}