mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-17 12:42:15 +01:00
add support for archiving projects and marking tasks as done
This commit is contained in:
@@ -24,6 +24,9 @@ export const useProjectsStore = defineStore('projects', () => {
|
||||
params: {
|
||||
organization: organization,
|
||||
},
|
||||
queries: {
|
||||
archived: 'all',
|
||||
},
|
||||
}),
|
||||
undefined,
|
||||
'Failed to fetch projects'
|
||||
|
||||
@@ -17,6 +17,9 @@ export const useTasksStore = defineStore('tasks', () => {
|
||||
params: {
|
||||
organization: organizationId,
|
||||
},
|
||||
queries: {
|
||||
done: 'all',
|
||||
},
|
||||
})
|
||||
);
|
||||
if (tasksResponse?.data) {
|
||||
|
||||
Reference in New Issue
Block a user