Skip to content

Commit

Permalink
feat: add two types in workorder
Browse files Browse the repository at this point in the history
  • Loading branch information
zjy365 committed Nov 8, 2024
1 parent d754ebe commit 17d6e76
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
17 changes: 13 additions & 4 deletions frontend/providers/workorder/src/constants/workorder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,18 @@ export const OrderTypeList: {
id: WorkOrderType.DBProvider,
label: 'dbprovider'
},
{
id: WorkOrderType.AccountCenter,
label: 'account_center'
},
{
id: WorkOrderType.AIProxy,
label: 'AI Proxy'
},
{
id: WorkOrderType.DevBox,
label: 'Devbox'
},
{
id: WorkOrderType.CronJob,
label: 'cronjob'
Expand All @@ -36,10 +48,7 @@ export const OrderTypeList: {
id: WorkOrderType.FunctionServer,
label: 'functionserver'
},
{
id: WorkOrderType.AccountCenter,
label: 'account_center'
},

{
id: WorkOrderType.Other,
label: 'other'
Expand Down
2 changes: 2 additions & 0 deletions frontend/providers/workorder/src/types/workorder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ export enum WorkOrderType {
FunctionServer = 'functionserver',
FastGPT = 'fastgpt',
AccountCenter = 'account_center',
AIProxy = 'aiproxy',
DevBox = 'devbox',
Other = 'other'
}

Expand Down

0 comments on commit 17d6e76

Please sign in to comment.