refactor(pages): add index.ts barrel files for blog, qna, security, marketplace, build-dashboard
This commit is contained in:
@@ -936,7 +936,9 @@ class ExecutionLoop:
|
||||
"type": "function",
|
||||
"function": {
|
||||
"name": tc.tool_name,
|
||||
"arguments": str(tc.arguments),
|
||||
"arguments": _json.dumps(
|
||||
tc.arguments
|
||||
),
|
||||
},
|
||||
}
|
||||
for tc in decision.tool_calls
|
||||
|
||||
@@ -8,7 +8,7 @@ import { Agents, AgentDetail } from '@/pages/agents'
|
||||
import { Tasks } from '@/pages/tasks'
|
||||
import { Plugins } from '@/pages/plugins'
|
||||
import { Policies } from '@/pages/policies'
|
||||
import { Security } from '@/pages/security/Security'
|
||||
import { Security } from '@/pages/security'
|
||||
import { SecurityCenter } from '@/pages/security-center'
|
||||
import { Logs } from '@/pages/logs'
|
||||
import { Settings } from '@/pages/settings'
|
||||
@@ -19,19 +19,14 @@ import { Integrations } from '@/pages/integrations'
|
||||
import { Models } from '@/pages/models'
|
||||
import { Docs } from '@/pages/Docs'
|
||||
import { Constellation } from '@/pages/Constellation'
|
||||
import BlogList from '@/pages/blog/BlogList'
|
||||
import BlogPost from '@/pages/blog/BlogPost'
|
||||
import BlogNew from '@/pages/blog/BlogNew'
|
||||
import BlogDrafts from '@/pages/blog/BlogDrafts'
|
||||
import QnAList from '@/pages/qna/QnAList'
|
||||
import QnAPost from '@/pages/qna/QnAPost'
|
||||
import QnANew from '@/pages/qna/QnANew'
|
||||
import { BlogList, BlogPost, BlogNew, BlogDrafts } from '@/pages/blog'
|
||||
import { QnAList, QnAPost, QnANew } from '@/pages/qna'
|
||||
import Profile from '@/pages/Profile'
|
||||
import { Workflows } from '@/pages/workflows'
|
||||
import BuildDashboard from '@/pages/build-dashboard/BuildDashboard'
|
||||
import { BuildDashboard } from '@/pages/build-dashboard'
|
||||
import { Approvals } from '@/pages/approvals/Approvals'
|
||||
import { KnowledgeBase } from '@/pages/knowledge-base'
|
||||
import { Marketplace } from '@/pages/marketplace/Marketplace'
|
||||
import { Marketplace } from '@/pages/marketplace'
|
||||
import { ProtectedRoute } from '@/auth/ProtectedRoute'
|
||||
|
||||
function App() {
|
||||
|
||||
4
webapp/src/pages/blog/index.ts
Normal file
4
webapp/src/pages/blog/index.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export { default as BlogList } from './BlogList'
|
||||
export { default as BlogPost } from './BlogPost'
|
||||
export { default as BlogNew } from './BlogNew'
|
||||
export { default as BlogDrafts } from './BlogDrafts'
|
||||
1
webapp/src/pages/build-dashboard/index.ts
Normal file
1
webapp/src/pages/build-dashboard/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export { default as BuildDashboard } from './BuildDashboard'
|
||||
1
webapp/src/pages/marketplace/index.ts
Normal file
1
webapp/src/pages/marketplace/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export { Marketplace } from './Marketplace'
|
||||
3
webapp/src/pages/qna/index.ts
Normal file
3
webapp/src/pages/qna/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export { default as QnAList } from './QnAList'
|
||||
export { default as QnAPost } from './QnAPost'
|
||||
export { default as QnANew } from './QnANew'
|
||||
1
webapp/src/pages/security/index.ts
Normal file
1
webapp/src/pages/security/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export { Security } from './Security'
|
||||
Reference in New Issue
Block a user