This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
论坛
实训
竞赛
大数据
AI开发
Register
Sign In
wangwei
/
aiforge
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
128
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
Merge pull request '接口增加用户ID' (
#3324
) from fix-yitong into V20221214
Reviewed-on:
https://openi.pcl.ac.cn/OpenI/aiforge/pulls/3324
Reviewed-by: zouap <zouap@pcl.ac.cn>
tags/v1.22.12.1^2
zouap
2 years ago
parent
4b36a24ced
d4b72e06cd
commit
0c53720109
2 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
modules/convert/cloudbrain.go
+1
-0
modules/structs/tagger.go
+ 1
- 0
modules/convert/cloudbrain.go
View File
@@ -104,6 +104,7 @@ func ToSpecification(s *models.Specification) *api.SpecificationShow {
func ToTagger(user *models.User) *api.Tagger {
return &api.Tagger{
ID: user.ID,
Name: user.Name,
RelAvatarURL: user.RelAvatarLink(),
Email: user.Email,
+ 1
- 0
modules/structs/tagger.go
View File
@@ -1,6 +1,7 @@
package structs
type Tagger struct {
ID int64 `json:"id"`
Name string `json:"name"`
Email string `json:"email"`
RelAvatarURL string `json:"relAvatarURL"`
Write
Preview
Loading…
Cancel
Save