-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
api definition for business tag #405
Conversation
PR Reviewer Guide 🔍(Review updated until commit 8354bab)
|
PR Code Suggestions ✨Latest suggestions up to 8354bab Explore these optional code suggestions:
Previous suggestionsSuggestions up to commit 7894731
Suggestions up to commit dd877cf
Suggestions up to commit bf9fcc7
Suggestions up to commit e44ef24
|
Persistent review updated to latest commit 53b2c45 |
Persistent review updated to latest commit 2c898bb |
Persistent review updated to latest commit e44ef24 |
Persistent review updated to latest commit bf9fcc7 |
Persistent review updated to latest commit dd877cf |
Persistent review updated to latest commit 7894731 |
- Create BusinessTag struct with ID and Name fields - Add CreateBusinessTagReq, UpdateBusinessTagReq, and ListBusinessTagReq for business tag operations - Define ListBusinessTagsReply to respond to list requests
- Add BusinessTag field to Project struct - Mark Business field as deprecated - Update related structs and interfaces to support BusinessTag
- CreateBusinessTag: Create a new business tag - UpdateBusinessTag: Update an existing business tag - DeleteBusinessTag: Delete an existing business tag - ListBusinessTags: List all business tags Also, marked AddProject, ImportProjects, and PreviewImportProjects as deprecated.
- Add new project management endpoints under /v2/dms/projects - Implement AddProjectV2, ImportProjectsV2, and PreviewImportProjectsV2 methods - Update Swagger documentation for new v2 endpoints
- Add FilterByBusinessTag query parameter to ListProjectReq - Add BusinessTag struct and include in ListProject response - Mark 'business' field in ListProject as deprecated
…oints - Add new business tag related endpoints: - List business tags - Create business tag - Update business tag - Delete business tag - Add filter_by_business_tag parameter to project list endpoint - Deprecate existing project endpoints and introduce new ones with "V2" suffix - Update project models to include business tag information
Persistent review updated to latest commit f7d325b |
PR Code Suggestions ✨No code suggestions found for the PR. |
…v1 endpoint - Add new GET endpoint at /v2/dms/projects for listing projects - Deprecate existing GET endpoint at /v1/dms/projects - Update API controller to handle new endpoint - Modify API definitions in swagger.json and swagger.yaml
Persistent review updated to latest commit 8354bab |
User description
issue
https://github.com/actiontech/sqle-ee/issues/2306
actiontech/sqle#3008
变更内容:
增加项目的所属业务标签路由组API定义,包括:
原型参考
Description
添加业务标签API定义
引入项目管理V2端点
更新Swagger文档以支持新API
废弃旧的业务字段
Changes walkthrough 📝