mirror of
https://github.com/sasjs/server.git
synced 2026-06-10 10:30:20 +00:00
feat: conver single session controller to two controller i.e. SASSessionController and JSSessionController
This commit is contained in:
Vendored
+1
-1
@@ -2,6 +2,6 @@ declare namespace Express {
|
||||
export interface Request {
|
||||
accessToken?: string
|
||||
user?: import('../').RequestUser
|
||||
sasSession?: import('../').Session
|
||||
sasjsSession?: import('../').Session
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+3
-1
@@ -1,8 +1,10 @@
|
||||
declare namespace NodeJS {
|
||||
export interface Process {
|
||||
runTimes: string[]
|
||||
sasLoc: string
|
||||
driveLoc: string
|
||||
sessionController?: import('../../controllers/internal').SessionController
|
||||
sasSessionController?: import('../../controllers/internal').SASSessionController
|
||||
jsSessionController?: import('../../controllers/internal').JSSessionController
|
||||
appStreamConfig: import('../').AppStreamConfig
|
||||
logger: import('@sasjs/utils/logger').Logger
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user