This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
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
delete avatar when del user
tags/v1.2.0-rc1
Unknwon
10 years ago
parent
ba9bc20640
commit
8bb2734fe0
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
models/user.go
+ 3
- 1
models/user.go
View File
@@ -553,10 +553,12 @@ func DeleteUser(u *User) error {
return err
}
// Delete user d
irectory
.
// Delete user d
ata
.
if err = os.RemoveAll(UserPath(u.Name)); err != nil {
return err
}
// Delete avatar.
os.Remove(u.CustomAvatarPath())
return sess.Commit()
}
Write
Preview
Loading…
Cancel
Save