1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-04-03 19:29:29 -05:00

Eliminate if-statement ()

This commit is contained in:
Aya Morisawa 2018-12-09 13:13:00 +09:00 committed by syuilo
parent 706d47ec32
commit fb8b0c291d

View file

@ -61,11 +61,7 @@ export default abstract class Chart<T> {
constructor(name: string, grouped = false) {
this.collection = db.get<Log<T>>(`chart.${name}`);
if (grouped) {
this.collection.createIndex({ span: -1, date: -1, group: -1 }, { unique: true });
} else {
this.collection.createIndex({ span: -1, date: -1 }, { unique: true });
}
this.collection.createIndex({ span: -1, date: -1, group: grouped ? -1 : undefined }, { unique: true });
}
@autobind