- Added new router views schema and types for better structure and type safety. - Implemented CRUD operations for router views including listing, updating, retrieving, and deleting views. - Introduced permission checks to ensure users can only access and modify their own views. - Updated prompts route to include additional permission checks for updating and retrieving prompts. - Refactored common query tests to align with new configurations. - Organized route imports for better maintainability.
18 lines
266 B
TypeScript
18 lines
266 B
TypeScript
import './user/index.ts';
|
|
|
|
import './app-manager/index.ts';
|
|
|
|
import './file/index.ts';
|
|
|
|
import './micro-app/index.ts';
|
|
|
|
import './config/index.ts';
|
|
|
|
import './file-listener/index.ts';
|
|
|
|
|
|
import './ai/index.ts';
|
|
|
|
import './prompts/index.ts'
|
|
|
|
import './views/index.ts'; |