bug fix for saving and restarting notebook
This commit is contained in:
parent
330baa51ac
commit
eadf769ab3
4 changed files with 54 additions and 44 deletions
|
|
@ -2,6 +2,13 @@ const auth = require("express").Router();
|
|||
const passport = require("passport");
|
||||
const axios = require("axios");
|
||||
|
||||
const express = require("express");
|
||||
|
||||
const bodyParser = require("body-parser");
|
||||
|
||||
auth.use(express.json());
|
||||
auth.use(bodyParser.urlencoded({ extended: true }));
|
||||
|
||||
const AUTH_URL = process.env.AUTH_URL || "http://localhost:8080";
|
||||
|
||||
auth.get(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue