wip: create new req endpoint to get characters data

This commit is contained in:
2026-06-29 12:52:52 +07:00
parent a04d1ffdf1
commit 28b3de29d8
8 changed files with 148 additions and 139 deletions

View File

@ -143,7 +143,11 @@ export const InsertMediaRepository = async ({ payload }: { payload: MediaFullInf
});
await bulkInsertMediaProducerStudioLicensorRepository(tx, media.id, producerPayload);
return media.id;
return {
id: media.id,
mal_id: payload.mal_id,
name: payload.title,
};
});
} catch (error) {