mirror of
https://github.com/sasjs/server.git
synced 2026-01-17 10:50:05 +00:00
Merge branch 'issue16-session' of github.com:sasjs/server into issue16-session
Conflicts: src/routes/index.ts src/utils/upload.ts
This commit is contained in:
@@ -89,7 +89,7 @@ ${program}`
|
|||||||
(key: string) => key.toLowerCase() === '_debug'
|
(key: string) => key.toLowerCase() === '_debug'
|
||||||
)
|
)
|
||||||
|
|
||||||
if (debug && vars[debug] >= 131 || stderr) {
|
if ((debug && vars[debug] >= 131) || stderr) {
|
||||||
webout = `<html><body>
|
webout = `<html><body>
|
||||||
${webout}
|
${webout}
|
||||||
<div style="text-align:left">
|
<div style="text-align:left">
|
||||||
|
|||||||
@@ -1,9 +1,19 @@
|
|||||||
import express from 'express'
|
import express from 'express'
|
||||||
import { createFileTree, getSessionController, getTreeExample } from '../controllers'
|
import {
|
||||||
|
createFileTree,
|
||||||
|
getSessionController,
|
||||||
|
getTreeExample
|
||||||
|
} from '../controllers'
|
||||||
import { ExecutionResult, isRequestQuery, isFileTree } from '../types'
|
import { ExecutionResult, isRequestQuery, isFileTree } from '../types'
|
||||||
import path from 'path'
|
import path from 'path'
|
||||||
import { addExtensionIfNotFound, getTmpFilesFolderPath, getTmpFolderPath, makeFilesNamesMap } from '../utils'
|
import {
|
||||||
|
addExtensionIfNotFound,
|
||||||
|
getTmpFilesFolderPath,
|
||||||
|
getTmpFolderPath,
|
||||||
|
makeFilesNamesMap
|
||||||
|
} from '../utils'
|
||||||
import { ExecutionController, FileUploadController } from '../controllers'
|
import { ExecutionController, FileUploadController } from '../controllers'
|
||||||
|
import { uuidv4 } from '@sasjs/utils'
|
||||||
|
|
||||||
const router = express.Router()
|
const router = express.Router()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user