UNPKG

stackpress

Version:

Incept is a content management framework.

15 lines (14 loc) 406 B
import { isObject } from '@stackpress/ingest/helpers'; import { decrypt } from '../helpers'; export default async function AuthDetail(_req, res, ctx) { if (!isObject(res.body)) return; const seed = ctx.config.path('session.seed', 'abc123'); const results = res.body; try { results.token = decrypt(results.token, seed); } catch (e) { } delete results.secret; } ;