oops there was an error in the range key

This commit is contained in:
adueck 2024-11-28 01:19:20 +05:00
parent bdb40fedce
commit fc780d4643
2 changed files with 1 additions and 28 deletions

View File

@ -16,33 +16,6 @@ function sendResponse(res: Response, payload: T.APIResponse) {
const submissionsRouter = express.Router(); const submissionsRouter = express.Router();
const auth = new google.auth.GoogleAuth({
// TODO: THESE CREDENTIALS ARE NOT WORKING SOMEHOW !!
credentials: {
private_key: Buffer.from(env.lingdocsServiceAccountKey, "base64").toString(
"ascii"
),
client_email: env.lingdocsServiceAccountEmail,
},
scopes: [
"https://www.googleapis.com/auth/spreadsheets",
"https://www.googleapis.com/auth/drive.file",
],
});
const { spreadsheets } = google.sheets({
version: "v4",
auth,
});
const sheets: Sheets = {
spreadsheetId: env.lingdocsDictionarySpreadsheet,
spreadsheets,
};
submissionsRouter.get("/", async (req, res, next) => {
const r = await getEntriesFromSheet(sheets);
res.send(r);
});
// Guard all api with authentication // Guard all api with authentication
submissionsRouter.use((req, res, next) => { submissionsRouter.use((req, res, next) => {
if (req.isAuthenticated()) { if (req.isAuthenticated()) {

View File

@ -99,7 +99,7 @@ export async function updateDictionaryEntries(
const values = [entryToRowArray(entry)]; const values = [entryToRowArray(entry)];
return [ return [
{ {
q: `B${rowNum}:${lastCol}${rowNum}`, range: `B${rowNum}:${lastCol}${rowNum}`,
values, values,
}, },
]; ];