mirror of
https://github.com/sismics/docs.git
synced 2024-11-14 18:27:58 +01:00
commit
b3ef9b0476
@ -29,6 +29,7 @@ Features
|
||||
- Multi-users ACL system
|
||||
- Audit log
|
||||
- Comments
|
||||
- Storage quota per user
|
||||
- Document sharing by URL
|
||||
- RESTful Web API
|
||||
- Fully featured Android client
|
||||
|
@ -228,7 +228,9 @@ public class AppResource extends BaseResource {
|
||||
|
||||
// Save all users
|
||||
for (User user : userMap.values()) {
|
||||
userDao.update(user);
|
||||
if (user.getDeleteDate() == null) {
|
||||
userDao.update(user);
|
||||
}
|
||||
}
|
||||
|
||||
// Always return OK
|
||||
|
Loading…
Reference in New Issue
Block a user