- oder authors and contributor inside dataset.controller.ts

- npm updates
This commit is contained in:
Arno Kaimbacher 2023-04-04 12:04:58 +02:00
parent 3e52eb0099
commit 2a6a2a6def
2 changed files with 7 additions and 0 deletions

View File

@ -48,6 +48,7 @@ export class DatasetController {
model: Person,
through: { where: { role: "author" } },
as: "authors",
// order: [['link_documents_persons.sort_order', 'ASC']],
},
{
model: Person,
@ -61,6 +62,11 @@ export class DatasetController {
"files",
"identifier",
],
order: [
["authors", dbContext.DocumentPersons, "sort_order", "ASC"],
["contributors", dbContext.DocumentPersons, "sort_order", "ASC"],
],
// order: ['server_date_published'],
// order: ['server_date_published'],
});
// .then((data) => {

View File

@ -255,5 +255,6 @@ export function initModels() {
Coverage: Coverage,
Subject: Subject,
License: License,
DocumentPersons: DocumentPersons
};
}