Commit 7de0c72a authored by Grant's avatar Grant
Browse files

.result

parent 8e26f36a
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ const renderStatic = (data: { title: string; json: any }) => {
    </head>
    <body>
      <h1>${data.title}</h1>
      <code><pre>${stripHtml(JSON.stringify(data.json, null, 2))}</pre></code>
      <code><pre>${stripHtml(JSON.stringify(data.json, null, 2)).result}</pre></code>

      <a href="/">Home</a>
    </body>
@@ -36,7 +36,7 @@ app.get("/", async (req, res) => {
      <body>
        <h1>Fediverse Auth Demo</h1>
        <b>Query Parameters:</b>
        <code><pre>${stripHtml(JSON.stringify(req.query, null, 2))}</pre></code>
        <code><pre>${stripHtml(JSON.stringify(req.query, null, 2)).result}</pre></code>

        <a href="/login">Test Out Fediverse Auth Login</a>
      </body>