yeet
This commit is contained in:
parent
20620cff41
commit
5a15c1a106
12
.vscode/settings.json
vendored
12
.vscode/settings.json
vendored
@ -1,6 +1,11 @@
|
|||||||
{
|
{
|
||||||
"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}${separator}${profileName}${separator}${appName}",
|
"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}${separator}${profileName}${separator}${appName}",
|
||||||
"workbench.editor.labelFormat": "medium",
|
"workbench.editor.labelFormat": "default",
|
||||||
|
"workbench.editor.customLabels.enabled": true,
|
||||||
|
"workbench.editor.customLabels.patterns": {
|
||||||
|
"**/[[]...slug[]]/route.ts": "${dirname(1)}/slug/${filename}.${extname}",
|
||||||
|
"**/route.ts": "Route: ${dirname(1)}",
|
||||||
|
},
|
||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
"**/.git": true,
|
"**/.git": true,
|
||||||
"**/.svn": true,
|
"**/.svn": true,
|
||||||
@ -9,7 +14,8 @@
|
|||||||
"**/.DS_Store": true,
|
"**/.DS_Store": true,
|
||||||
"**/Thumbs.db": true,
|
"**/Thumbs.db": true,
|
||||||
".**": true,
|
".**": true,
|
||||||
"node_modules": true,
|
"node_modules": true
|
||||||
},
|
},
|
||||||
"hide-files.files": [],
|
"betterOpenEditors.HidePackagePath": true,
|
||||||
|
"betterOpenEditors.PackagePatterns": "**/components\n**/modules/\n**/app\n**/app/api\n**/app/admin\n**/models\n**/util/*\n**/util\n**/lib/*\n**/views"
|
||||||
}
|
}
|
||||||
@ -6,7 +6,7 @@ import PostTable, {
|
|||||||
import {
|
import {
|
||||||
GetPostsAttributes,
|
GetPostsAttributes,
|
||||||
PostServerActions,
|
PostServerActions,
|
||||||
} from "@/app/lib/actions/entityManagement/post/postActions";
|
} from "@/app/lib/actions/entitymanagement/post/postActions";
|
||||||
import { EditorState } from "@/components/client/admin/PostEditor";
|
import { EditorState } from "@/components/client/admin/PostEditor";
|
||||||
import { Project } from "@/models";
|
import { Project } from "@/models";
|
||||||
import { ReactNode, useState } from "react";
|
import { ReactNode, useState } from "react";
|
||||||
|
|||||||
@ -8,11 +8,11 @@ import {
|
|||||||
updatePost,
|
updatePost,
|
||||||
GetPostsAttributes,
|
GetPostsAttributes,
|
||||||
PostServerActions,
|
PostServerActions,
|
||||||
} from "@/app/lib/actions/entityManagement/post/postActions";
|
} from "@/app/lib/actions/entitymanagement/post/postActions";
|
||||||
import { getProjects } from "@/app/lib/actions/entityManagement/post/projectActions";
|
import { getProjects } from "@/app/lib/actions/entitymanagement/post/projectActions";
|
||||||
import { Bucket, Project, Post, dbSync, Attachment } from "@/models";
|
import { Bucket, Project, Post, dbSync, Attachment } from "@/models";
|
||||||
import { handleActionResult } from "@/app/lib/actions/clientActionHandler";
|
import { handleActionResult } from "@/app/lib/actions/clientActionHandler";
|
||||||
import { CPostView } from "@/views/admin/post";
|
import { CPostView } from "@/components/views/admin/post";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
children?: ReactNode;
|
children?: ReactNode;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user