Merge branch 'master' into sort-table-names
This commit is contained in:
commit
7aafacec9e
|
@ -46,6 +46,11 @@ server {
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ ^/api/(system|admin|global)/ {
|
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;
|
proxy_pass http://127.0.0.1:4002;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
|
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
|
||||||
"version": "3.2.21",
|
"version": "3.2.22",
|
||||||
"npmClient": "yarn",
|
"npmClient": "yarn",
|
||||||
"concurrency": 20,
|
"concurrency": 20,
|
||||||
"command": {
|
"command": {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit d9245f3d6d0b41ec2e6b3406b791f9e7448882cb
|
Subproject commit e60f4b1b364fd49d2bb082f298757f83cb2032f0
|
|
@ -1,4 +1,3 @@
|
||||||
export * from "./accounts"
|
export * from "./accounts"
|
||||||
export * from "./user"
|
|
||||||
export * from "./license"
|
export * from "./license"
|
||||||
export * from "./status"
|
export * from "./status"
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
export interface PostAccountUserActivity {
|
|
||||||
timestamp: number
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface PostAccountUserActivityResponse {
|
|
||||||
userId: string
|
|
||||||
timestamp: number
|
|
||||||
}
|
|
Loading…
Reference in New Issue