feat: rename lists to projects #2697

Closed
konrad wants to merge 53 commits from feature/rename-lists-to-projects into main
2 changed files with 2 additions and 2 deletions
Showing only changes of commit b7ed70ff39 - Show all commits

View File

@ -136,7 +136,7 @@ async function addTask() {
// If the task has a project specified, make sure to use it // If the task has a project specified, make sure to use it
let projectId = null let projectId = null
if (project !== null) { if (project !== null) {
projectId = await taskStore.findListId({project, projectId: 0}) projectId = await taskStore.findProjectId({project, projectId: 0})
} }
const task = await taskStore.createNewTask({ const task = await taskStore.createNewTask({

View File

@ -451,7 +451,7 @@ export const useTaskStore = defineStore('task', () => {
addLabelsToTask, addLabelsToTask,
createNewTask, createNewTask,
setCoverImage, setCoverImage,
findListId, findProjectId,
ensureLabelsExist, ensureLabelsExist,
} }
}) })