feat: rename lists to projects #2697

Closed
konrad wants to merge 53 commits from feature/rename-lists-to-projects into main
Showing only changes of commit 357f1cfc5c - Show all commits

View File

@ -95,7 +95,7 @@ export const useProjectStore = defineStore('project', () => {
} }
async function createProject(project: IProject) { async function createProject(project: IProject) {
const cancel = setModuleLoading(this, setIsLoading) const cancel = setModuleLoading(setIsLoading)
const projectService = new ProjectService() const projectService = new ProjectService()
try { try {
@ -145,7 +145,7 @@ export const useProjectStore = defineStore('project', () => {
} }
async function deleteProject(project: IProject) { async function deleteProject(project: IProject) {
const cancel = setModuleLoading(this, setIsLoading) const cancel = setModuleLoading(setIsLoading)
const projectService = new ProjectService() const projectService = new ProjectService()
try { try {