Migrated the controllers

This commit is contained in:
2023-11-13 12:28:25 +01:00
parent 1f8f90ffb0
commit 9ddcfe13ed
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ import {bucket} from "./bucket";
* @param assetName The name of the asset
* @param assetEnding The file ending of the asset
*/
export const createMedia = (clientId: number, assetName: string, assetEnding: string | undefined) =>
export const createMedia = (clientId: string, assetName: string, assetEnding: string | undefined) =>
Media.create({clientId, assetName, assetEnding: assetEnding || "txt"});
/**