33 lines
847 B
TypeScript
33 lines
847 B
TypeScript
import sqlite from "better-sqlite3";
|
|
|
|
import {
|
|
lotOccupancyDB as databasePath
|
|
} from "../../data/databasePaths.js";
|
|
|
|
import type * as recordTypes from "../../types/recordTypes";
|
|
|
|
|
|
export const deleteLotComment =
|
|
(lotCommentId: number | string,
|
|
requestSession: recordTypes.PartialSession): boolean => {
|
|
|
|
const database = sqlite(databasePath);
|
|
|
|
const rightNowMillis = Date.now();
|
|
|
|
const result = database
|
|
.prepare("update LotComments" +
|
|
" set recordDelete_userName = ?," +
|
|
" recordDelete_timeMillis = ?" +
|
|
" where lotCommentId = ?")
|
|
.run(requestSession.user.userName,
|
|
rightNowMillis,
|
|
lotCommentId);
|
|
|
|
database.close();
|
|
|
|
return (result.changes > 0);
|
|
};
|
|
|
|
|
|
export default deleteLotComment; |