mirror of https://github.com/fantasticit/think.git
Merge pull request #12 from fantasticit/bugfix/createWiki
This commit is contained in:
commit
ca7f18e640
|
@ -300,9 +300,13 @@ export class DocumentService {
|
|||
userId: user.id,
|
||||
});
|
||||
|
||||
const query = this.documentRepo.createQueryBuilder('documemt');
|
||||
query.select('MAX(documemt.index)', 'maxIndex');
|
||||
const { maxIndex } = await query.getRawOne();
|
||||
const [docs] = await this.documentRepo.findAndCount({ createUserId: user.id });
|
||||
const maxIndex = docs.length
|
||||
? Math.max.apply(
|
||||
[],
|
||||
docs.map((doc) => +doc.index)
|
||||
)
|
||||
: -1;
|
||||
|
||||
const data = {
|
||||
...dto,
|
||||
|
|
Loading…
Reference in New Issue