-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92f1194
commit b2abd7e
Showing
56 changed files
with
892 additions
and
167 deletions.
There are no files selected for viewing
10 changes: 5 additions & 5 deletions
10
...ew-api/controllers/ai-model.controller.ts → ...ew-api/controllers/ai-model-controller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...api/controllers/ai-provider.controller.ts → ...api/controllers/ai-provider-controller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion
3
...pi/controllers/chat-session.controller.ts → ...pi/controllers/chat-session-controller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import type { Controller } from '../types' | ||
import { AIModelController } from './ai-model-controller' | ||
import { AIProviderController } from './ai-provider-controller' | ||
import { ApplyController } from './apply-controller' | ||
import { ChatController } from './chat-controller' | ||
import { ChatSessionController } from './chat-session-controller' | ||
import { CodebaseController } from './codebase-controller' | ||
import { DocController } from './doc-controller' | ||
import { FileController } from './file-controller' | ||
import { GitController } from './git-controller' | ||
import { SettingsController } from './settings-controller' | ||
import { SystemController } from './system-controller' | ||
|
||
export const controllers = [ | ||
ChatController, | ||
CodebaseController, | ||
FileController, | ||
GitController, | ||
SystemController, | ||
DocController, | ||
ChatSessionController, | ||
ApplyController, | ||
SettingsController, | ||
AIProviderController, | ||
AIModelController | ||
] as const satisfies (typeof Controller)[] | ||
export type Controllers = typeof controllers |
2 changes: 1 addition & 1 deletion
2
...ew-api/controllers/settings.controller.ts → ...ew-api/controllers/settings-controller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.