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 163885af81 - Show all commits

View File

@ -22,7 +22,7 @@ const DataExportDownload = () => import('@/views/user/DataExportDownload.vue')
// Tasks // Tasks
import UpcomingTasksComponent from '@/views/tasks/ShowTasks.vue' import UpcomingTasksComponent from '@/views/tasks/ShowTasks.vue'
konrad marked this conversation as resolved Outdated

Why the change to .. instead of @?

Why the change to `..` instead of `@`?

Not intended, probably caused by the rebase.

Not intended, probably caused by the rebase.

Can we keep the @ to keep it aligned?

Can we keep the `@` to keep it aligned?

Sure, changed all imports so they do that.

Sure, changed all imports so they do that.
import LinkShareAuthComponent from '@/views/sharing/LinkSharingAuth.vue' import LinkShareAuthComponent from '@/views/sharing/LinkSharingAuth.vue'
import ListNamespaces from '@/views/namespaces/ListNamespaces.vue' const ListNamespaces = () => import('@/views/namespaces/ListNamespaces.vue')
konrad marked this conversation as resolved Outdated

Now these are not a dynamic imports anymore.

Now these are not a dynamic imports anymore.

Fixed.

Fixed.
const TaskDetailView = () => import('@/views/tasks/TaskDetailView.vue') const TaskDetailView = () => import('@/views/tasks/TaskDetailView.vue')
// Team Handling // Team Handling
@ -34,19 +34,19 @@ const NewLabelComponent = () => import('@/views/labels/NewLabel.vue')
const MigrationComponent = () => import('@/views/migrate/Migration.vue') const MigrationComponent = () => import('@/views/migrate/Migration.vue')
const MigrationHandlerComponent = () => import('@/views/migrate/MigrationHandler.vue') const MigrationHandlerComponent = () => import('@/views/migrate/MigrationHandler.vue')
// Project Views // Project Views
import ProjectList from '@/views/project/ProjectList.vue' const ProjectList = () => import('@/views/project/ProjectList.vue')
const ProjectGantt = () => import('@/views/project/ProjectGantt.vue') const ProjectGantt = () => import('@/views/project/ProjectGantt.vue')
import ProjectTable from '@/views/project/ProjectTable.vue' const ProjectTable = () => import('@/views/project/ProjectTable.vue')
import ProjectKanban from '@/views/project/ProjectKanban.vue' const ProjectKanban = () => import('@/views/project/ProjectKanban.vue')
const ProjectInfo = () => import('@/views/project/ProjectInfo.vue') const ProjectInfo = () => import('@/views/project/ProjectInfo.vue')
// Project Settings // Project Settings
import ProjectSettingEdit from '@/views/project/settings/edit.vue' const ProjectSettingEdit = () => import('@/views/project/settings/edit.vue')
import ProjectSettingBackground from '@/views/project/settings/background.vue' const ProjectSettingBackground = () => import('@/views/project/settings/background.vue')
import ProjectSettingDuplicate from '@/views/project/settings/duplicate.vue' const ProjectSettingDuplicate = () => import('@/views/project/settings/duplicate.vue')
import ProjectSettingShare from '@/views/project/settings/share.vue' const ProjectSettingShare = () => import('@/views/project/settings/share.vue')
import ProjectSettingDelete from '@/views/project/settings/delete.vue' const ProjectSettingDelete = () => import('@/views/project/settings/delete.vue')
import ProjectSettingArchive from '@/views/project/settings/archive.vue' const ProjectSettingArchive = () => import('@/views/project/settings/archive.vue')
// Namespace Settings // Namespace Settings
const NamespaceSettingEdit = () => import('@/views/namespaces/settings/edit.vue') const NamespaceSettingEdit = () => import('@/views/namespaces/settings/edit.vue')