Merge branch 'master' into sort-table-names

This commit is contained in:
Andrew Thompson 2024-12-03 17:16:33 +00:00 committed by GitHub
commit 7aafacec9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 7 additions and 11 deletions

View File

@ -46,6 +46,11 @@ server {
}
location ~ ^/api/(system|admin|global)/ {
# Enable buffering for potentially large OIDC configs
proxy_buffering on;
proxy_buffer_size 16k;
proxy_buffers 4 32k;
proxy_pass http://127.0.0.1:4002;
}

View File

@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "3.2.21",
"version": "3.2.22",
"npmClient": "yarn",
"concurrency": 20,
"command": {

@ -1 +1 @@
Subproject commit d9245f3d6d0b41ec2e6b3406b791f9e7448882cb
Subproject commit e60f4b1b364fd49d2bb082f298757f83cb2032f0

View File

@ -1,4 +1,3 @@
export * from "./accounts"
export * from "./user"
export * from "./license"
export * from "./status"

View File

@ -1,8 +0,0 @@
export interface PostAccountUserActivity {
timestamp: number
}
export interface PostAccountUserActivityResponse {
userId: string
timestamp: number
}