feat: rename lists to projects #2697

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

View File

@ -23,7 +23,7 @@ const DataExportDownload = () => import('@/views/user/DataExportDownload.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 ListNamespaces from '../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
const ListTeamsComponent = () => import('@/views/teams/ListTeams.vue')
@ -34,11 +34,11 @@ const NewLabelComponent = () => import('@/views/labels/NewLabel.vue')
const MigrationComponent = () => import('@/views/migrate/Migration.vue')
const MigrationHandlerComponent = () => import('@/views/migrate/MigrationHandler.vue')
// Project Views
import ProjectList from '../views/project/ProjectList.vue'
const ProjectGantt = () => import('../views/project/ProjectGantt.vue')
import ProjectTable from '../views/project/ProjectTable.vue'
import ProjectKanban from '../views/project/ProjectKanban.vue'
const ProjectInfo = () => import('../views/project/ProjectInfo.vue')
import ProjectList from '@/views/project/ProjectList.vue'
const ProjectGantt = () => import('@/views/project/ProjectGantt.vue')
import ProjectTable from '@/views/project/ProjectTable.vue'
import ProjectKanban from '@/views/project/ProjectKanban.vue'
const ProjectInfo = () => import('@/views/project/ProjectInfo.vue')
// Project Settings
import ProjectSettingEdit from '../views/project/settings/edit.vue'