mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
Fix typing issue when using Dockerfile.dev.
This commit is contained in:
parent
a8460d3c7b
commit
ad6b064063
|
@ -43,7 +43,7 @@ export class MongoCollection implements ICollection {
|
||||||
.then((collection) => collection.insert(document));
|
.then((collection) => collection.insert(document));
|
||||||
}
|
}
|
||||||
|
|
||||||
count(query: any): Bluebird<number> {
|
count(query: any): Bluebird<any> {
|
||||||
return this.collection()
|
return this.collection()
|
||||||
.then((collection) => collection.count(query));
|
.then((collection) => collection.count(query));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user