Backend half
This commit is contained in:
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.getSSOTokenFromFile = void 0;
|
||||
const fs_1 = require("fs");
|
||||
const getSSOTokenFilepath_1 = require("./getSSOTokenFilepath");
|
||||
const { readFile } = fs_1.promises;
|
||||
const getSSOTokenFromFile = async (id) => {
|
||||
const ssoTokenFilepath = (0, getSSOTokenFilepath_1.getSSOTokenFilepath)(id);
|
||||
const ssoTokenText = await readFile(ssoTokenFilepath, "utf8");
|
||||
return JSON.parse(ssoTokenText);
|
||||
};
|
||||
exports.getSSOTokenFromFile = getSSOTokenFromFile;
|
||||
Reference in New Issue
Block a user