chore: move all services inside the apps folder (#7321)
* chore: move all services inside the apps folder * chore: rename apiserver to server
This commit is contained in:
parent
6000639921
commit
944b873184
3442 changed files with 1 additions and 4 deletions
1
apps/space/ce/components/editor/embeds/index.ts
Normal file
1
apps/space/ce/components/editor/embeds/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export * from "./mentions";
|
||||
1
apps/space/ce/components/editor/embeds/mentions/index.ts
Normal file
1
apps/space/ce/components/editor/embeds/mentions/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export * from "./root";
|
||||
4
apps/space/ce/components/editor/embeds/mentions/root.tsx
Normal file
4
apps/space/ce/components/editor/embeds/mentions/root.tsx
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
// plane editor
|
||||
import { TMentionComponentProps } from "@plane/editor";
|
||||
|
||||
export const EditorAdditionalMentionsRoot: React.FC<TMentionComponentProps> = () => null;
|
||||
1
apps/space/ce/components/editor/index.ts
Normal file
1
apps/space/ce/components/editor/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export * from "./embeds";
|
||||
10
apps/space/ce/components/issue-layouts/root.tsx
Normal file
10
apps/space/ce/components/issue-layouts/root.tsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { PageNotFound } from "@/components/ui/not-found";
|
||||
import { PublishStore } from "@/store/publish/publish.store";
|
||||
|
||||
type Props = {
|
||||
peekId: string | undefined;
|
||||
publishSettings: PublishStore;
|
||||
};
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
export const ViewLayoutsRoot = (props: Props) => <PageNotFound />;
|
||||
8
apps/space/ce/components/navbar/index.tsx
Normal file
8
apps/space/ce/components/navbar/index.tsx
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import { PublishStore } from "@/store/publish/publish.store";
|
||||
|
||||
type Props = {
|
||||
publishSettings: PublishStore;
|
||||
};
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
export const ViewNavbarRoot = (props: Props) => <></>;
|
||||
1
apps/space/ce/hooks/store/index.ts
Normal file
1
apps/space/ce/hooks/store/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export * from "./use-published-view";
|
||||
5
apps/space/ce/hooks/store/use-published-view.ts
Normal file
5
apps/space/ce/hooks/store/use-published-view.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
export const useView = () => ({
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
fetchViewDetails: (anchor: string) => {},
|
||||
viewData: {},
|
||||
});
|
||||
8
apps/space/ce/store/root.store.ts
Normal file
8
apps/space/ce/store/root.store.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
// store
|
||||
import { CoreRootStore } from "@/store/root.store";
|
||||
|
||||
export class RootStore extends CoreRootStore {
|
||||
constructor() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue