This seems to be needed for the client when refreshing the ship after loading into a mission as it does not resync the ship otherwise. Closes #1629 Reviewed-on: #1632 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
24 lines
927 B
TypeScript
24 lines
927 B
TypeScript
import { getAccountIdForRequest } from "@/src/services/loginService";
|
|
import { IPictureFrameInfo, ISetPlacedDecoInfoRequest } from "@/src/types/shipTypes";
|
|
import { RequestHandler } from "express";
|
|
import { handleSetPlacedDecoInfo } from "@/src/services/shipCustomizationsService";
|
|
|
|
export const setPlacedDecoInfoController: RequestHandler = async (req, res) => {
|
|
const accountId = await getAccountIdForRequest(req);
|
|
const payload = JSON.parse(req.body as string) as ISetPlacedDecoInfoRequest;
|
|
await handleSetPlacedDecoInfo(accountId, payload);
|
|
res.json({
|
|
DecoId: payload.DecoId,
|
|
IsPicture: true,
|
|
PictureFrameInfo: payload.PictureFrameInfo,
|
|
BootLocation: payload.BootLocation
|
|
} satisfies ISetPlacedDecoInfoResponse);
|
|
};
|
|
|
|
interface ISetPlacedDecoInfoResponse {
|
|
DecoId: string;
|
|
IsPicture: boolean;
|
|
PictureFrameInfo?: IPictureFrameInfo;
|
|
BootLocation?: string;
|
|
}
|