mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-07-31 10:06:05 -04:00
7 lines
202 B
TypeScript
7 lines
202 B
TypeScript
import type { ParsedTask, TaskDto } from "~/schemas/tasks";
|
|
|
|
export const toTaskDto = (task: ParsedTask): TaskDto => {
|
|
const { organizationId: _organizationId, ...taskDto } = task;
|
|
return taskDto;
|
|
};
|