mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 19:33:10 +02:00
perf(backend): ドライブのチャートはローカルユーザーのみ生成するように
This commit is contained in:
parent
46f99755db
commit
6a29b182ee
2 changed files with 11 additions and 8 deletions
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- リモートユーザーのチャート生成を無効にするオプションを追加
|
- リモートユーザーのチャート生成を無効にするオプションを追加
|
||||||
|
- ドライブのチャートはローカルユーザーのみ生成するように
|
||||||
- 空のアンテナが作成できるのを修正
|
- 空のアンテナが作成できるのを修正
|
||||||
|
|
||||||
## 13.10.2
|
## 13.10.2
|
||||||
|
|
|
@ -619,10 +619,11 @@ export class DriveService {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// 統計を更新
|
|
||||||
this.driveChart.update(file, true);
|
this.driveChart.update(file, true);
|
||||||
|
if (file.userHost == null) {
|
||||||
|
// ローカルユーザーのみ
|
||||||
this.perUserDriveChart.update(file, true);
|
this.perUserDriveChart.update(file, true);
|
||||||
if (file.userHost !== null) {
|
} else {
|
||||||
this.instanceChart.updateDrive(file, true);
|
this.instanceChart.updateDrive(file, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -706,10 +707,11 @@ export class DriveService {
|
||||||
this.driveFilesRepository.delete(file.id);
|
this.driveFilesRepository.delete(file.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 統計を更新
|
|
||||||
this.driveChart.update(file, false);
|
this.driveChart.update(file, false);
|
||||||
|
if (file.userHost == null) {
|
||||||
|
// ローカルユーザーのみ
|
||||||
this.perUserDriveChart.update(file, false);
|
this.perUserDriveChart.update(file, false);
|
||||||
if (file.userHost !== null) {
|
} else {
|
||||||
this.instanceChart.updateDrive(file, false);
|
this.instanceChart.updateDrive(file, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue