add subscription webhook

This commit is contained in:
daniel31x13
2024-10-06 01:59:31 -04:00
parent d99972a335
commit d042c82cb0
6 changed files with 244 additions and 1 deletions
+1 -1
View File
@@ -17,5 +17,5 @@ export default async function getUsers() {
},
});
return { response: users, status: 200 };
return { response: users.sort((a: any, b: any) => a.id - b.id), status: 200 };
}