move clients settings into projects

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-04-02 22:33:13 +02:00
parent 1245047a7c
commit d9e3045a5b
11 changed files with 182 additions and 124 deletions

View File

@@ -32,6 +32,9 @@ export async function getProjectsByOrganizationSlug(slug: string) {
where: {
organization_slug: slug,
},
orderBy: {
createdAt: 'desc',
},
});
return res.map(transformProject);