File tree Expand file tree Collapse file tree 7 files changed +103
-103
lines changed
Expand file tree Collapse file tree 7 files changed +103
-103
lines changed Original file line number Diff line number Diff line change 3838 "dependencies" : {
3939 "@nasa-jpl/stellar" : " ^1.0.3" ,
4040 "@sveltejs/adapter-node" : " 1.0.0-next.81" ,
41- "@sveltejs/kit" : " 1.0.0-next.374 " ,
41+ "@sveltejs/kit" : " 1.0.0-next.377 " ,
4242 "bootstrap" : " ^5.1.3" ,
43- "bootstrap-icons" : " ^1.9.0 " ,
43+ "bootstrap-icons" : " ^1.9.1 " ,
4444 "cookie" : " ^0.5.0" ,
4545 "d3-axis" : " ^3.0.0" ,
4646 "d3-brush" : " ^3.0.0" ,
6262 "toastify-js" : " ^1.11.2"
6363 },
6464 "devDependencies" : {
65- "@playwright/test" : " ^1.23.3 " ,
65+ "@playwright/test" : " ^1.23.4 " ,
6666 "@testing-library/svelte" : " ^3.1.3" ,
6767 "@types/cookie" : " ^0.5.1" ,
6868 "@types/d3-axis" : " ^3.0.1" ,
7878 "@typescript-eslint/eslint-plugin" : " ^5.30.6" ,
7979 "@typescript-eslint/parser" : " ^5.30.6" ,
8080 "cloc" : " ^2.10.0" ,
81- "eslint" : " ^8.19 .0" ,
81+ "eslint" : " ^8.20 .0" ,
8282 "eslint-config-prettier" : " ^8.5.0" ,
8383 "eslint-plugin-svelte3" : " ^4.0.0" ,
8484 "jsdom" : " ^20.0.0" ,
9090 "tslib" : " ^2.4.0" ,
9191 "typescript" : " ^4.7.4" ,
9292 "unique-names-generator" : " ^4.7.1" ,
93- "vite" : " ^3.0.0 " ,
94- "vitest" : " ^0.18.0 "
93+ "vite" : " ^3.0.2 " ,
94+ "vitest" : " ^0.18.1 "
9595 }
9696}
Original file line number Diff line number Diff line change 11import type { RequestHandler } from '@sveltejs/kit' ;
22import effects from '../../utilities/effects' ;
33
4- export const post : RequestHandler = async event => {
4+ export const POST : RequestHandler = async event => {
55 const body : LoginRequestBody = await event . request . json ( ) ;
66 const { password, username } = body ;
77
Original file line number Diff line number Diff line change 11import type { RequestHandler } from '@sveltejs/kit' ;
22import effects from '../../utilities/effects' ;
33
4- export const post : RequestHandler = async event => {
4+ export const POST : RequestHandler = async event => {
55 const { locals } = event ;
66 const { user } = locals ;
77 const { ssoToken = '' } = user ;
Original file line number Diff line number Diff line change 11import { defaultEnv } from '../../stores/app' ;
22
3- export async function get ( ) : Promise < { body : Env } > {
3+ export async function GET ( ) : Promise < { body : Env } > {
44 const { env } = process ;
55
66 const AUTH_TYPE = env [ 'AUTH_TYPE' ] ?? defaultEnv . AUTH_TYPE ;
Original file line number Diff line number Diff line change 1- export async function get ( ) : Promise < { body : { success : boolean } } > {
1+ export async function GET ( ) : Promise < { body : { success : boolean } } > {
22 return {
33 body : {
44 success : true ,
You can’t perform that action at this time.
0 commit comments