Compare commits
44 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
57bfe97d08 | ||
|
|
028570279c | ||
|
|
bda1cd1f25 | ||
|
|
7a9b775b09 | ||
|
|
17e791afb9 | ||
|
|
920fc7d937 | ||
|
|
6e314a2fa5 | ||
|
|
dc90db6591 | ||
|
|
beed4895c1 | ||
|
|
629dd669c4 | ||
|
|
fc9319e55b | ||
|
|
58b64a5739 | ||
|
|
d93537261e | ||
|
|
22ec87d00e | ||
|
|
b87b4156e7 | ||
|
|
93f010b880 | ||
|
|
c5d4cdf1bc | ||
|
|
c117601e53 | ||
|
|
f78f838ed9 | ||
|
|
1583b69fb7 | ||
|
|
cde6d1b0e0 | ||
|
|
be60569a14 | ||
|
|
51226a74d0 | ||
|
|
e983473a54 | ||
|
|
211ab3fd9d | ||
|
|
90c8ea7f09 | ||
|
|
fb5193d896 | ||
|
|
f7a7f01d7d | ||
|
|
2c84a52937 | ||
|
|
6020590b2f | ||
|
|
1477def4fe | ||
|
|
8882f1da0e | ||
|
|
056d487f1c | ||
|
|
b8083215b3 | ||
|
|
61c864e748 | ||
|
|
0e0f5030da | ||
|
|
0dacc4d49e | ||
|
|
4d783c5e42 | ||
|
|
75b3a6bea4 | ||
|
|
29507cda7e | ||
|
|
81e0c82fee | ||
|
|
7519fad6dd | ||
|
|
248a59ee8c | ||
|
|
cefb6d3c95 |
94
.github/workflows/jobs.yaml
vendored
94
.github/workflows/jobs.yaml
vendored
@@ -1308,9 +1308,92 @@ jobs:
|
||||
exit 1
|
||||
fi
|
||||
|
||||
ui-assets-istanbul-coverage:
|
||||
name: "Assets with Istanbul Plugin for coverage"
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
go-version: [1.19.x]
|
||||
os: [ubuntu-latest]
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v3
|
||||
- name: Read .nvmrc
|
||||
id: node_version
|
||||
run: echo "$(cat .nvmrc)" && echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_ENV
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ env.NVMRC }}
|
||||
cache: "yarn"
|
||||
cache-dependency-path: portal-ui/yarn.lock
|
||||
- uses: actions/cache@v3
|
||||
id: assets-cache-istanbul-coverage
|
||||
name: Assets Cache Istanbul Coverage
|
||||
with:
|
||||
path: |
|
||||
./portal-ui/build/
|
||||
key: ${{ runner.os }}-assets-istanbul-coverage-${{ github.run_id }}
|
||||
- name: Install Dependencies
|
||||
working-directory: ./portal-ui
|
||||
continue-on-error: false
|
||||
run: |
|
||||
yarn install --frozen-lockfile --immutable
|
||||
- name: Check for Warnings in build output
|
||||
working-directory: ./portal-ui
|
||||
continue-on-error: false
|
||||
run: |
|
||||
./check-warnings-istanbul-coverage.sh
|
||||
- name: Check if Files are Prettified
|
||||
working-directory: ./portal-ui
|
||||
continue-on-error: false
|
||||
run: |
|
||||
./check-prettier.sh
|
||||
|
||||
compile-binary-istanbul-coverage:
|
||||
name: "Compile Console Binary with Istanbul Plugin for Coverage"
|
||||
needs:
|
||||
- lint-job
|
||||
- ui-assets-istanbul-coverage
|
||||
- reuse-golang-dependencies
|
||||
- semgrep-static-code-analysis
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
go-version: [1.19.x]
|
||||
os: [ubuntu-latest]
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Go ${{ matrix.go-version }} on ${{ matrix.os }}
|
||||
uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: ${{ matrix.go-version }}
|
||||
cache: true
|
||||
id: go
|
||||
- uses: actions/cache@v3
|
||||
name: Console Binary Cache Istanbul Coverage
|
||||
with:
|
||||
path: |
|
||||
./console
|
||||
key: ${{ runner.os }}-binary-istanbul-coverage-${{ github.run_id }}
|
||||
- uses: actions/cache@v3
|
||||
id: assets-cache-istanbul-coverage
|
||||
name: Assets Cache Istanbul Coverage
|
||||
with:
|
||||
path: |
|
||||
./portal-ui/build/
|
||||
key: ${{ runner.os }}-assets-istanbul-coverage-${{ github.run_id }}
|
||||
- name: Build on ${{ matrix.os }}
|
||||
env:
|
||||
GO111MODULE: on
|
||||
GOOS: linux
|
||||
run: |
|
||||
make console
|
||||
|
||||
playwright:
|
||||
needs:
|
||||
- compile-binary
|
||||
- compile-binary-istanbul-coverage
|
||||
timeout-minutes: 60
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
@@ -1337,21 +1420,16 @@ jobs:
|
||||
run: npx playwright install --with-deps
|
||||
|
||||
- uses: actions/cache@v3
|
||||
name: Console Binary Cache
|
||||
name: Console Binary Cache Istanbul Coverage
|
||||
with:
|
||||
path: |
|
||||
./console
|
||||
key: ${{ runner.os }}-binary-${{ github.run_id }}
|
||||
key: ${{ runner.os }}-binary-istanbul-coverage-${{ github.run_id }}
|
||||
|
||||
- name: Start Console, front-end app and initialize users/policies
|
||||
run: |
|
||||
(./console server) & (make initialize-permissions)
|
||||
|
||||
- name: Start Browser at port 5005
|
||||
run: |
|
||||
echo "yarn playwright"
|
||||
(cd $GITHUB_WORKSPACE/portal-ui; yarn playwright) & (sleep 120) # To start port 5005 with Istanbul Plugin Injected
|
||||
|
||||
- name: Run Playwright tests
|
||||
run: |
|
||||
echo "Run tests under playwright folder only"
|
||||
|
||||
@@ -1,3 +1,27 @@
|
||||
# Developing MinIO Console
|
||||
|
||||
The MinIO Console requires the [MinIO Server](https://github.com/minio/minio). For development purposes, you also need to run both the MinIO Console web app and the MinIO Console server.
|
||||
|
||||
## Running MinIO Console server
|
||||
|
||||
Build the server in the main folder by running:
|
||||
```
|
||||
make
|
||||
```
|
||||
> Note: If it's the first time running the server, you might need to run `go mod tidy` to ensure you have all modules required.
|
||||
To start the server run:
|
||||
```
|
||||
CONSOLE_ACCESS_KEY=<your-access-key>
|
||||
CONSOLE_SECRET_KEY=<your-secret-key>
|
||||
CONSOLE_MINIO_SERVER=<minio-server-endpoint>
|
||||
CONSOLE_DEV_MODE=on
|
||||
./console server
|
||||
```
|
||||
|
||||
## Running MinIO Console web app
|
||||
Refer to `/portal-ui` [instructions](/portal-ui/README.md) to run the web app locally.
|
||||
|
||||
|
||||
# Building with MinIO
|
||||
|
||||
To test console in its shipping format, you need to build it from the MinIO repository, the following step will guide
|
||||
|
||||
43
go.mod
43
go.mod
@@ -9,42 +9,42 @@ require (
|
||||
github.com/fatih/color v1.15.0
|
||||
github.com/go-openapi/errors v0.20.3
|
||||
github.com/go-openapi/loads v0.21.2
|
||||
github.com/go-openapi/runtime v0.25.0
|
||||
github.com/go-openapi/spec v0.20.8
|
||||
github.com/go-openapi/strfmt v0.21.5
|
||||
github.com/go-openapi/runtime v0.26.0
|
||||
github.com/go-openapi/spec v0.20.9
|
||||
github.com/go-openapi/strfmt v0.21.7
|
||||
github.com/go-openapi/swag v0.22.3
|
||||
github.com/go-openapi/validate v0.22.1
|
||||
github.com/golang-jwt/jwt/v4 v4.5.0
|
||||
github.com/google/uuid v1.3.0
|
||||
github.com/jessevdk/go-flags v1.5.0
|
||||
github.com/klauspost/compress v1.16.3
|
||||
github.com/klauspost/compress v1.16.5
|
||||
github.com/minio/cli v1.24.2
|
||||
github.com/minio/directpv v1.4.4-0.20220805090942-948ca4731651
|
||||
github.com/minio/highwayhash v1.0.2
|
||||
github.com/minio/kes v0.22.3
|
||||
github.com/minio/madmin-go/v2 v2.0.17
|
||||
github.com/minio/mc v0.0.0-20230323200304-81453d7c8fcc
|
||||
github.com/minio/minio-go/v7 v7.0.50
|
||||
github.com/minio/madmin-go/v2 v2.1.1
|
||||
github.com/minio/mc v0.0.0-20230509151326-6050568e66a6
|
||||
github.com/minio/minio-go/v7 v7.0.52
|
||||
github.com/minio/operator v0.0.0-20230228004026-ad024a9dffe5
|
||||
github.com/minio/pkg v1.6.5
|
||||
github.com/minio/selfupdate v0.6.0
|
||||
github.com/minio/websocket v1.6.0
|
||||
github.com/mitchellh/go-homedir v1.1.0
|
||||
github.com/rs/xid v1.4.0
|
||||
github.com/rs/xid v1.5.0
|
||||
github.com/secure-io/sio-go v0.3.1
|
||||
github.com/stretchr/testify v1.8.2
|
||||
github.com/tidwall/gjson v1.14.4
|
||||
github.com/unrolled/secure v1.13.0
|
||||
golang.org/x/crypto v0.7.0
|
||||
golang.org/x/net v0.8.0
|
||||
golang.org/x/oauth2 v0.6.0
|
||||
golang.org/x/crypto v0.8.0
|
||||
golang.org/x/net v0.9.0
|
||||
golang.org/x/oauth2 v0.7.0
|
||||
// Added to include security fix for
|
||||
// https://github.com/golang/go/issues/56152
|
||||
golang.org/x/text v0.8.0 // indirect
|
||||
golang.org/x/text v0.9.0 // indirect
|
||||
gopkg.in/yaml.v2 v2.4.0 // indirect
|
||||
k8s.io/api v0.26.3 // indirect
|
||||
k8s.io/apimachinery v0.26.3 // indirect
|
||||
k8s.io/client-go v0.26.3
|
||||
k8s.io/api v0.27.1 // indirect
|
||||
k8s.io/apimachinery v0.27.1 // indirect
|
||||
k8s.io/client-go v0.27.1
|
||||
k8s.io/utils v0.0.0-20230313181309-38a27ef9d749 // indirect
|
||||
)
|
||||
|
||||
@@ -142,10 +142,11 @@ require (
|
||||
github.com/prometheus/common v0.42.0 // indirect
|
||||
github.com/prometheus/procfs v0.9.0 // indirect
|
||||
github.com/prometheus/prom2json v1.3.2 // indirect
|
||||
github.com/rivo/tview v0.0.0-20230325211341-281d14d896d7 // indirect
|
||||
github.com/rivo/tview v0.0.0-20230406072732-e22ce9588bb4 // indirect
|
||||
github.com/rivo/uniseg v0.4.4 // indirect
|
||||
github.com/rjeczalik/notify v0.9.3 // indirect
|
||||
github.com/shirou/gopsutil/v3 v3.23.2 // indirect
|
||||
github.com/shirou/gopsutil/v3 v3.23.3 // indirect
|
||||
github.com/shoenig/go-m1cpu v0.1.5 // indirect
|
||||
github.com/sirupsen/logrus v1.9.0 // indirect
|
||||
github.com/spf13/afero v1.9.5 // indirect
|
||||
github.com/spf13/cast v1.5.0 // indirect
|
||||
@@ -164,16 +165,16 @@ require (
|
||||
go.etcd.io/etcd/client/v3 v3.5.7 // indirect
|
||||
go.mongodb.org/mongo-driver v1.11.3 // indirect
|
||||
go.uber.org/atomic v1.10.0 // indirect
|
||||
go.uber.org/multierr v1.10.0 // indirect
|
||||
go.uber.org/multierr v1.11.0 // indirect
|
||||
go.uber.org/zap v1.24.0 // indirect
|
||||
golang.org/x/mod v0.9.0 // indirect
|
||||
golang.org/x/sync v0.1.0 // indirect
|
||||
golang.org/x/sys v0.6.0 // indirect
|
||||
golang.org/x/term v0.6.0 // indirect
|
||||
golang.org/x/sys v0.7.0 // indirect
|
||||
golang.org/x/term v0.7.0 // indirect
|
||||
golang.org/x/time v0.3.0 // indirect
|
||||
golang.org/x/tools v0.7.0 // indirect
|
||||
google.golang.org/appengine v1.6.7 // indirect
|
||||
google.golang.org/genproto v0.0.0-20230327152035-dc694ad2151e // indirect
|
||||
google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd // indirect
|
||||
google.golang.org/grpc v1.54.0 // indirect
|
||||
google.golang.org/protobuf v1.30.0 // indirect
|
||||
gopkg.in/h2non/filetype.v1 v1.0.5 // indirect
|
||||
|
||||
95
go.sum
95
go.sum
@@ -339,17 +339,17 @@ github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En
|
||||
github.com/go-openapi/loads v0.21.1/go.mod h1:/DtAMXXneXFjbQMGEtbamCZb+4x7eGwkvZCvBmwUG+g=
|
||||
github.com/go-openapi/loads v0.21.2 h1:r2a/xFIYeZ4Qd2TnGpWDIQNcP80dIaZgf704za8enro=
|
||||
github.com/go-openapi/loads v0.21.2/go.mod h1:Jq58Os6SSGz0rzh62ptiu8Z31I+OTHqmULx5e/gJbNw=
|
||||
github.com/go-openapi/runtime v0.25.0 h1:7yQTCdRbWhX8vnIjdzU8S00tBYf7Sg71EBeorlPHvhc=
|
||||
github.com/go-openapi/runtime v0.25.0/go.mod h1:Ux6fikcHXyyob6LNWxtE96hWwjBPYF0DXgVFuMTneOs=
|
||||
github.com/go-openapi/runtime v0.26.0 h1:HYOFtG00FM1UvqrcxbEJg/SwvDRvYLQKGhw2zaQjTcc=
|
||||
github.com/go-openapi/runtime v0.26.0/go.mod h1:QgRGeZwrUcSHdeh4Ka9Glvo0ug1LC5WyE+EV88plZrQ=
|
||||
github.com/go-openapi/spec v0.20.4/go.mod h1:faYFR1CvsJZ0mNsmsphTMSoRrNV3TEDoAM7FOEWeq8I=
|
||||
github.com/go-openapi/spec v0.20.6/go.mod h1:2OpW+JddWPrpXSCIX8eOx7lZ5iyuWj3RYR6VaaBKcWA=
|
||||
github.com/go-openapi/spec v0.20.8 h1:ubHmXNY3FCIOinT8RNrrPfGc9t7I1qhPtdOGoG2AxRU=
|
||||
github.com/go-openapi/spec v0.20.8/go.mod h1:2OpW+JddWPrpXSCIX8eOx7lZ5iyuWj3RYR6VaaBKcWA=
|
||||
github.com/go-openapi/spec v0.20.9 h1:xnlYNQAwKd2VQRRfwTEI0DcK+2cbuvI/0c7jx3gA8/8=
|
||||
github.com/go-openapi/spec v0.20.9/go.mod h1:2OpW+JddWPrpXSCIX8eOx7lZ5iyuWj3RYR6VaaBKcWA=
|
||||
github.com/go-openapi/strfmt v0.21.0/go.mod h1:ZRQ409bWMj+SOgXofQAGTIo2Ebu72Gs+WaRADcS5iNg=
|
||||
github.com/go-openapi/strfmt v0.21.1/go.mod h1:I/XVKeLc5+MM5oPNN7P6urMOpuLXEcNrCX/rPGuWb0k=
|
||||
github.com/go-openapi/strfmt v0.21.3/go.mod h1:k+RzNO0Da+k3FrrynSNN8F7n/peCmQQqbbXjtDfvmGg=
|
||||
github.com/go-openapi/strfmt v0.21.5 h1:Z/algjpXIZpbvdN+6KbVTkpO75RuedMrqpn1GN529h4=
|
||||
github.com/go-openapi/strfmt v0.21.5/go.mod h1:k+RzNO0Da+k3FrrynSNN8F7n/peCmQQqbbXjtDfvmGg=
|
||||
github.com/go-openapi/strfmt v0.21.7 h1:rspiXgNWgeUzhjo1YU01do6qsahtJNByjLVbPLNHb8k=
|
||||
github.com/go-openapi/strfmt v0.21.7/go.mod h1:adeGTkxE44sPyLk0JV235VQAO/ZXUr8KAzYjclFs3ew=
|
||||
github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk=
|
||||
github.com/go-openapi/swag v0.19.15/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ=
|
||||
github.com/go-openapi/swag v0.21.1/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ=
|
||||
@@ -358,6 +358,7 @@ github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+
|
||||
github.com/go-openapi/validate v0.22.1 h1:G+c2ub6q47kfX1sOBLwIQwzBVt8qmOAARyo/9Fqs9NU=
|
||||
github.com/go-openapi/validate v0.22.1/go.mod h1:rjnrwK57VJ7A8xqfpAOEKRH8yQSGUriMu5/zuPSQ1hg=
|
||||
github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
|
||||
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 h1:p104kn46Q8WdvHunIJ9dAyjPVtrBPhSr3KT2yUst43I=
|
||||
github.com/gobuffalo/attrs v0.0.0-20190224210810-a9411de4debd/go.mod h1:4duuawTqi2wkkpB4ePgWMaai6/Kc6WEz83bhFwpHzj0=
|
||||
github.com/gobuffalo/depgen v0.0.0-20190329151759-d478694a28d3/go.mod h1:3STtPUQYuzV0gBVOY3vy6CfMm/ljR4pABfrTeHNLHUY=
|
||||
github.com/gobuffalo/depgen v0.1.0/go.mod h1:+ifsuy7fhi15RWncXQQKjWS9JPkdah5sZvtHc2RXGlg=
|
||||
@@ -471,6 +472,7 @@ github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLe
|
||||
github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
|
||||
github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
|
||||
github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
|
||||
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 h1:K6RDEckDVWvDI9JAJYCmNdQXq6neHJOYx3V6jnqNEec=
|
||||
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
|
||||
github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
|
||||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4=
|
||||
@@ -554,8 +556,8 @@ github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI
|
||||
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
|
||||
github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
|
||||
github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU=
|
||||
github.com/klauspost/compress v1.16.3 h1:XuJt9zzcnaz6a16/OU53ZjWp/v7/42WcR5t2a0PcNQY=
|
||||
github.com/klauspost/compress v1.16.3/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE=
|
||||
github.com/klauspost/compress v1.16.5 h1:IFV2oUNUzZaz+XyusxpLzpzS8Pt5rh0Z16For/djlyI=
|
||||
github.com/klauspost/compress v1.16.5/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE=
|
||||
github.com/klauspost/cpuid/v2 v2.0.1/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
|
||||
github.com/klauspost/cpuid/v2 v2.0.4/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
|
||||
github.com/klauspost/cpuid/v2 v2.1.0/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY=
|
||||
@@ -653,15 +655,15 @@ github.com/minio/highwayhash v1.0.2/go.mod h1:BQskDq+xkJ12lmlUUi7U0M5Swg3EWR+dLT
|
||||
github.com/minio/kes v0.22.3 h1:aSPW9uCMVaLax5POxvoQJxCU4MNo/KzMXA7WfmC/lRw=
|
||||
github.com/minio/kes v0.22.3/go.mod h1:wnhmdwWX2rpurNPKn3yDFImg2wuc7j3e+IU5rVkR9UY=
|
||||
github.com/minio/madmin-go v1.6.6/go.mod h1:ATvkBOLiP3av4D++2v1UEHC/QzsGtgXD5kYvvRYzdKs=
|
||||
github.com/minio/madmin-go/v2 v2.0.17 h1:oLg51zMuSl9K8Ng3eO5a/ELTfVEmaS8X5nzQaLwfLO0=
|
||||
github.com/minio/madmin-go/v2 v2.0.17/go.mod h1:8bL1RMNkblIENFSgGYjeHrzUx9PxROb7OqfNuMU9ivE=
|
||||
github.com/minio/mc v0.0.0-20230323200304-81453d7c8fcc h1:hhSnDwYb8clwMC/BZkhpoqicaPAlSIBqieqRZwHHg9E=
|
||||
github.com/minio/mc v0.0.0-20230323200304-81453d7c8fcc/go.mod h1:JbACfcKKvBZF4Pvipki9rtNDXBPPBCQtkVcs6GwdniQ=
|
||||
github.com/minio/madmin-go/v2 v2.1.1 h1:qUdJP31MD3ThPOmvfRby0J5ZJdAw5XK67LxTkUI9DWA=
|
||||
github.com/minio/madmin-go/v2 v2.1.1/go.mod h1:8bL1RMNkblIENFSgGYjeHrzUx9PxROb7OqfNuMU9ivE=
|
||||
github.com/minio/mc v0.0.0-20230509151326-6050568e66a6 h1:bRJ1PnUl58yZ4gUlHyCWexmv6jxBBfq1pmjrt1PERHw=
|
||||
github.com/minio/mc v0.0.0-20230509151326-6050568e66a6/go.mod h1:qs/xdw+kX2neHHthlUZ5pHc0RUKwxlzcaZfAkEKpmSI=
|
||||
github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34=
|
||||
github.com/minio/md5-simd v1.1.2/go.mod h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM=
|
||||
github.com/minio/minio-go/v7 v7.0.41/go.mod h1:nCrRzjoSUQh8hgKKtu3Y708OLvRLtuASMg2/nvmbarw=
|
||||
github.com/minio/minio-go/v7 v7.0.50 h1:4IL4V8m/kI90ZL6GupCARZVrBv8/XrcKcJhaJ3iz68k=
|
||||
github.com/minio/minio-go/v7 v7.0.50/go.mod h1:IbbodHyjUAguneyucUaahv+VMNs/EOTV9du7A7/Z3HU=
|
||||
github.com/minio/minio-go/v7 v7.0.52 h1:8XhG36F6oKQUDDSuz6dY3rioMzovKjW40W6ANuN0Dps=
|
||||
github.com/minio/minio-go/v7 v7.0.52/go.mod h1:IbbodHyjUAguneyucUaahv+VMNs/EOTV9du7A7/Z3HU=
|
||||
github.com/minio/mux v1.9.0 h1:dWafQFyEfGhJvK6AwLOt83bIG5bxKxKJnKMCi0XAaoA=
|
||||
github.com/minio/operator v0.0.0-20230228004026-ad024a9dffe5 h1:frrQ0bi+le6CW7KMBBizqZMwx/2fyuglbOo8cN985RM=
|
||||
github.com/minio/operator v0.0.0-20230228004026-ad024a9dffe5/go.mod h1:ZU+W2i3O3qCnpD88VHvBb7jg4I94pccmQELvbrqDjzc=
|
||||
@@ -724,8 +726,8 @@ github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4=
|
||||
github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U=
|
||||
github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec=
|
||||
github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
|
||||
github.com/onsi/ginkgo/v2 v2.4.0 h1:+Ig9nvqgS5OBSACXNk15PLdp0U9XPYROt9CFzVdFGIs=
|
||||
github.com/onsi/gomega v1.23.0 h1:/oxKu9c2HVap+F3PfKort2Hw5DEU+HGlW8n+tguWsys=
|
||||
github.com/onsi/ginkgo/v2 v2.9.1 h1:zie5Ly042PD3bsCvsSOPvRnFwyo3rKe64TJlD6nu0mk=
|
||||
github.com/onsi/gomega v1.27.4 h1:Z2AnStgsdSayCMDiCU42qIz+HLqEPcgiOCXjAU/w+8E=
|
||||
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
|
||||
github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE=
|
||||
github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
|
||||
@@ -780,8 +782,8 @@ github.com/prometheus/procfs v0.9.0 h1:wzCHvIvM5SxWqYvwgVL7yJY8Lz3PKn49KQtpgMYJf
|
||||
github.com/prometheus/procfs v0.9.0/go.mod h1:+pB4zwohETzFnmlpe6yd2lSc+0/46IYZRB/chUwxUZY=
|
||||
github.com/prometheus/prom2json v1.3.2 h1:heRKAGHWqm8N3IaRDDNBBJNVS6a9mLdsTlFhvOaNGb0=
|
||||
github.com/prometheus/prom2json v1.3.2/go.mod h1:TQ9o1OxW0eyhl4BBpVpGGsavyJfTDETna4/d0Kib+V0=
|
||||
github.com/rivo/tview v0.0.0-20230325211341-281d14d896d7 h1:8sjyhdBA9HmxHGUeAM/43uSHfyFhFodbxekw2mYhpo0=
|
||||
github.com/rivo/tview v0.0.0-20230325211341-281d14d896d7/go.mod h1:nVwGv4MP47T0jvlk7KuTTjjuSmrGO4JF0iaiNt4bufE=
|
||||
github.com/rivo/tview v0.0.0-20230406072732-e22ce9588bb4 h1:zX+lRcFRPX1jn8A11jxT0dEQhkmUM7pec+9NLK8MiTQ=
|
||||
github.com/rivo/tview v0.0.0-20230406072732-e22ce9588bb4/go.mod h1:nVwGv4MP47T0jvlk7KuTTjjuSmrGO4JF0iaiNt4bufE=
|
||||
github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
||||
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
||||
github.com/rivo/uniseg v0.4.2/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
|
||||
@@ -795,9 +797,10 @@ github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6L
|
||||
github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
|
||||
github.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
|
||||
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
|
||||
github.com/rogpeppe/go-internal v1.8.1 h1:geMPLpDpQOgVyCg5z5GoRwLHepNdb71NXb67XFkP+Eg=
|
||||
github.com/rs/xid v1.4.0 h1:qd7wPTDkN6KQx2VmMBLrpHkiyQwgFXRnkOLacUiaSNY=
|
||||
github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ=
|
||||
github.com/rs/xid v1.4.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg=
|
||||
github.com/rs/xid v1.5.0 h1:mKX4bl4iPYJtEIxp6CYiUuLQ/8DYMoz0PUdtGgMFRVc=
|
||||
github.com/rs/xid v1.5.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg=
|
||||
github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
|
||||
github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=
|
||||
github.com/sahilm/fuzzy v0.1.0/go.mod h1:VFvziUEIMCrT6A6tw2RFIXPXXmzXbOsSHF0DOI8ZK9Y=
|
||||
@@ -805,8 +808,13 @@ github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg
|
||||
github.com/secure-io/sio-go v0.3.1 h1:dNvY9awjabXTYGsTF1PiCySl9Ltofk9GA3VdWlo7rRc=
|
||||
github.com/secure-io/sio-go v0.3.1/go.mod h1:+xbkjDzPjwh4Axd07pRKSNriS9SCiYksWnZqdnfpQxs=
|
||||
github.com/shirou/gopsutil/v3 v3.22.9/go.mod h1:bBYl1kjgEJpWpxeHmLI+dVHWtyAwfcmSBLDsp2TNT8A=
|
||||
github.com/shirou/gopsutil/v3 v3.23.2 h1:PAWSuiAszn7IhPMBtXsbSCafej7PqUOvY6YywlQUExU=
|
||||
github.com/shirou/gopsutil/v3 v3.23.2/go.mod h1:gv0aQw33GLo3pG8SiWKiQrbDzbRY1K80RyZJ7V4Th1M=
|
||||
github.com/shirou/gopsutil/v3 v3.23.3 h1:Syt5vVZXUDXPEXpIBt5ziWsJ4LdSAAxF4l/xZeQgSEE=
|
||||
github.com/shirou/gopsutil/v3 v3.23.3/go.mod h1:lSBNN6t3+D6W5e5nXTxc8KIMMVxAcS+6IJlffjRRlMU=
|
||||
github.com/shoenig/go-m1cpu v0.1.4/go.mod h1:Wwvst4LR89UxjeFtLRMrpgRiyY4xPsejnVZym39dbAQ=
|
||||
github.com/shoenig/go-m1cpu v0.1.5 h1:LF57Z/Fpb/WdGLjt2HZilNnmZOxg/q2bSKTQhgbrLrQ=
|
||||
github.com/shoenig/go-m1cpu v0.1.5/go.mod h1:Wwvst4LR89UxjeFtLRMrpgRiyY4xPsejnVZym39dbAQ=
|
||||
github.com/shoenig/test v0.6.3 h1:GVXWJFk9PiOjN0KoJ7VrJGH6uLPnqxR7/fe3HUPfE0c=
|
||||
github.com/shoenig/test v0.6.3/go.mod h1:byHiCGXqrVaflBLAMq/srcZIHynQPQgeyvkvXnjqq0k=
|
||||
github.com/shurcooL/go v0.0.0-20200502201357-93f07166e636/go.mod h1:TDJrrUr11Vxrven61rcy3hJMUqaf/CLWYhHNPmT14Lk=
|
||||
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749/go.mod h1:ZY1cvUeJuFPAdZ/B6v7RHavJWZn2YPVFQ1OSXhCGOkg=
|
||||
github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=
|
||||
@@ -929,8 +937,8 @@ go.uber.org/goleak v1.1.11/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ
|
||||
go.uber.org/goleak v1.2.0 h1:xqgm/S+aQvhWFTtR0XK3Jvg7z8kGV8P4X14IzwN3Eqk=
|
||||
go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=
|
||||
go.uber.org/multierr v1.8.0/go.mod h1:7EAYxJLBy9rStEaz58O2t4Uvip6FSURkq8/ppBp95ak=
|
||||
go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ=
|
||||
go.uber.org/multierr v1.10.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
|
||||
go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
|
||||
go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
|
||||
go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo=
|
||||
go.uber.org/zap v1.23.0/go.mod h1:D+nX8jyLsMHMYrln8A0rJjFt/T/9/bGgIhAqxv5URuY=
|
||||
go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60=
|
||||
@@ -954,8 +962,8 @@ golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f/go.mod h1:IxCIyHEi3zRg3s0
|
||||
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
|
||||
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
|
||||
golang.org/x/crypto v0.0.0-20221012134737-56aed061732a/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
|
||||
golang.org/x/crypto v0.7.0 h1:AvwMYaRytfdeVt3u6mLaxYtErKYjxA2OXjJ1HHq6t3A=
|
||||
golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU=
|
||||
golang.org/x/crypto v0.8.0 h1:pd9TJtTueMTVQXzk8E2XESSMQDj/U7OUu0PqJqPXQjQ=
|
||||
golang.org/x/crypto v0.8.0/go.mod h1:mRqEX+O9/h5TFCrQhkgjo2yKi0yYA+9ecGkdQoHrywE=
|
||||
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
|
||||
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
|
||||
golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=
|
||||
@@ -1051,8 +1059,8 @@ golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug
|
||||
golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk=
|
||||
golang.org/x/net v0.0.0-20221017152216-f25eb7ecb193/go.mod h1:RpDiru2p0u2F0lLpEoqnP2+7xs0ifAuOcJ442g6GU2s=
|
||||
golang.org/x/net v0.3.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE=
|
||||
golang.org/x/net v0.8.0 h1:Zrh2ngAOFYneWTAIAPethzeaQLuHwhuBkuV6ZiRnUaQ=
|
||||
golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc=
|
||||
golang.org/x/net v0.9.0 h1:aWJ/m6xSmxWBx+V0XRHTlrYrPG56jKsLdTFmsSsCzOM=
|
||||
golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns=
|
||||
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
|
||||
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||
@@ -1077,8 +1085,8 @@ golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7Lm
|
||||
golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE=
|
||||
golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg=
|
||||
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg=
|
||||
golang.org/x/oauth2 v0.6.0 h1:Lh8GPgSKBfWSwFvtuWOfeI3aAAnbXTSutYxJiOJFgIw=
|
||||
golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw=
|
||||
golang.org/x/oauth2 v0.7.0 h1:qe6s0zUXlPX80/dITx3440hWZ7GwMwgDDyrSGTPJG/g=
|
||||
golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4=
|
||||
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
@@ -1195,15 +1203,16 @@ golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ=
|
||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU=
|
||||
golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
|
||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
||||
golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA=
|
||||
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
|
||||
golang.org/x/term v0.6.0 h1:clScbb1cHjoCkyRbWwBEUZ5H/tIFu5TAXIqaZD0Gcjw=
|
||||
golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U=
|
||||
golang.org/x/term v0.7.0 h1:BEvjmm5fURWqcfbSKTdpkDXYBrUS1c0m8agp14W48vQ=
|
||||
golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY=
|
||||
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
@@ -1216,8 +1225,8 @@ golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
||||
golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
|
||||
golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
|
||||
golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
|
||||
golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68=
|
||||
golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
|
||||
golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE=
|
||||
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
|
||||
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
|
||||
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
|
||||
golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
|
||||
@@ -1453,8 +1462,8 @@ google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53B
|
||||
google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI=
|
||||
google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM=
|
||||
google.golang.org/genproto v0.0.0-20221018160656-63c7b68cfc55/go.mod h1:45EK0dUbEZ2NHjCeAd2LXmyjAgGUGrpGROgjhC3ADck=
|
||||
google.golang.org/genproto v0.0.0-20230327152035-dc694ad2151e h1:rRGPYd0STm9H4Ci+iGrSLG35mkAKY41/nzCcG7PQADw=
|
||||
google.golang.org/genproto v0.0.0-20230327152035-dc694ad2151e/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak=
|
||||
google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd h1:sLpv7bNL1AsX3fdnWh9WVh7ejIzXdOc1RRHGeAmeStU=
|
||||
google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak=
|
||||
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
|
||||
google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=
|
||||
google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
|
||||
@@ -1550,14 +1559,14 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh
|
||||
honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
|
||||
honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
|
||||
honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
|
||||
k8s.io/api v0.26.3 h1:emf74GIQMTik01Aum9dPP0gAypL8JTLl/lHa4V9RFSU=
|
||||
k8s.io/api v0.26.3/go.mod h1:PXsqwPMXBSBcL1lJ9CYDKy7kIReUydukS5JiRlxC3qE=
|
||||
k8s.io/api v0.27.1 h1:Z6zUGQ1Vd10tJ+gHcNNNgkV5emCyW+v2XTmn+CLjSd0=
|
||||
k8s.io/api v0.27.1/go.mod h1:z5g/BpAiD+f6AArpqNjkY+cji8ueZDU/WV1jcj5Jk4E=
|
||||
k8s.io/apiextensions-apiserver v0.26.3 h1:5PGMm3oEzdB1W/FTMgGIDmm100vn7IaUP5er36dB+YE=
|
||||
k8s.io/apiextensions-apiserver v0.26.3/go.mod h1:jdA5MdjNWGP+njw1EKMZc64xAT5fIhN6VJrElV3sfpQ=
|
||||
k8s.io/apimachinery v0.26.3 h1:dQx6PNETJ7nODU3XPtrwkfuubs6w7sX0M8n61zHIV/k=
|
||||
k8s.io/apimachinery v0.26.3/go.mod h1:ats7nN1LExKHvJ9TmwootT00Yz05MuYqPXEXaVeOy5I=
|
||||
k8s.io/client-go v0.26.3 h1:k1UY+KXfkxV2ScEL3gilKcF7761xkYsSD6BC9szIu8s=
|
||||
k8s.io/client-go v0.26.3/go.mod h1:ZPNu9lm8/dbRIPAgteN30RSXea6vrCpFvq+MateTUuQ=
|
||||
k8s.io/apimachinery v0.27.1 h1:EGuZiLI95UQQcClhanryclaQE6xjg1Bts6/L3cD7zyc=
|
||||
k8s.io/apimachinery v0.27.1/go.mod h1:5ikh59fK3AJ287GUvpUsryoMFtH9zj/ARfWCo3AyXTM=
|
||||
k8s.io/client-go v0.27.1 h1:oXsfhW/qncM1wDmWBIuDzRHNS2tLhK3BZv512Nc59W8=
|
||||
k8s.io/client-go v0.27.1/go.mod h1:f8LHMUkVb3b9N8bWturc+EDtVVVwZ7ueTVquFAJb2vA=
|
||||
k8s.io/klog/v2 v2.90.1 h1:m4bYOKall2MmOiRaR1J+We67Do7vm9KiQVlT96lnHUw=
|
||||
k8s.io/klog/v2 v2.90.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0=
|
||||
k8s.io/kube-openapi v0.0.0-20230327201221-f5883ff37f0c h1:EFfsozyzZ/pggw5qNx7ftTVZdp7WZl+3ih89GEjYEK8=
|
||||
|
||||
@@ -461,12 +461,24 @@ func ListObjects(bucketName, prefix, withVersions string) (*http.Response, error
|
||||
return response, err
|
||||
}
|
||||
|
||||
func SharesAnObjectOnAUrl(bucketName, prefix, versionID, expires string) (*http.Response, error) {
|
||||
// Helper function to share an object on a url
|
||||
func SharesAnObjectOnAUrl(bucketName, prefix, versionID, expires, accessKey, secretKey string) (*http.Response, error) {
|
||||
// Helper function to share an object on an url
|
||||
|
||||
requestDataAdd := map[string]interface{}{
|
||||
"prefix": prefix,
|
||||
"version_id": versionID,
|
||||
"expires": expires,
|
||||
"access_key": accessKey,
|
||||
"secret_key": secretKey,
|
||||
}
|
||||
|
||||
requestDataJSON, _ := json.Marshal(requestDataAdd)
|
||||
requestDataBody := bytes.NewReader(requestDataJSON)
|
||||
|
||||
request, err := http.NewRequest(
|
||||
"GET",
|
||||
"http://localhost:9090/api/v1/buckets/"+bucketName+"/objects/share?prefix="+prefix+"&version_id="+versionID+"&expires="+expires,
|
||||
nil,
|
||||
"POST",
|
||||
"http://localhost:9090/api/v1/buckets/"+bucketName+"/objects/share",
|
||||
requestDataBody,
|
||||
)
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
@@ -743,6 +755,39 @@ func PutObjectsLegalholdStatus(bucketName, prefix, status, versionID string) (*h
|
||||
return response, err
|
||||
}
|
||||
|
||||
func PostServiceAccountCredentials(accessKey, secretKey, policy string) (*http.Response, error) {
|
||||
/*
|
||||
Helper function to create a service account
|
||||
POST: {{baseUrl}}/service-account-credentials
|
||||
{
|
||||
"accessKey":"testsa",
|
||||
"secretKey":"secretsa",
|
||||
"policy":""
|
||||
}
|
||||
*/
|
||||
requestDataAdd := map[string]interface{}{
|
||||
"accessKey": accessKey,
|
||||
"secretKey": secretKey,
|
||||
"policy": policy,
|
||||
}
|
||||
requestDataJSON, _ := json.Marshal(requestDataAdd)
|
||||
requestDataBody := bytes.NewReader(requestDataJSON)
|
||||
|
||||
request, err := http.NewRequest("POST",
|
||||
"http://localhost:9090/api/v1/service-account-credentials",
|
||||
requestDataBody)
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
}
|
||||
request.Header.Add("Cookie", fmt.Sprintf("token=%s", token))
|
||||
request.Header.Add("Content-Type", "application/json")
|
||||
client := &http.Client{
|
||||
Timeout: 2 * time.Second,
|
||||
}
|
||||
response, err := client.Do(request)
|
||||
return response, err
|
||||
}
|
||||
|
||||
func TestPutObjectsLegalholdStatus(t *testing.T) {
|
||||
// Variables
|
||||
assert := assert.New(t)
|
||||
@@ -1514,6 +1559,8 @@ func TestShareObjectOnURL(t *testing.T) {
|
||||
tags := make(map[string]string)
|
||||
tags["tag"] = "testputobjecttagbucketonetagone"
|
||||
versionID := "null"
|
||||
accessKey := "testaccesskey"
|
||||
secretKey := "secretAccessKey"
|
||||
|
||||
// 1. Create the bucket
|
||||
if !setupBucket(bucketName, false, false, nil, nil, assert, 200) {
|
||||
@@ -1534,6 +1581,21 @@ func TestShareObjectOnURL(t *testing.T) {
|
||||
inspectHTTPResponse(uploadResponse),
|
||||
)
|
||||
}
|
||||
// 2. Create Access Key
|
||||
accKeyRsp, createError := PostServiceAccountCredentials(accessKey, secretKey, "")
|
||||
|
||||
if createError != nil {
|
||||
log.Println(createError)
|
||||
return
|
||||
}
|
||||
|
||||
if accKeyRsp != nil {
|
||||
assert.Equal(
|
||||
201,
|
||||
accKeyRsp.StatusCode,
|
||||
inspectHTTPResponse(accKeyRsp),
|
||||
)
|
||||
}
|
||||
|
||||
type args struct {
|
||||
prefix string
|
||||
@@ -1561,7 +1623,7 @@ func TestShareObjectOnURL(t *testing.T) {
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
// 3. Share the object on a URL
|
||||
shareResponse, shareError := SharesAnObjectOnAUrl(bucketName, tt.args.prefix, versionID, "604800s")
|
||||
shareResponse, shareError := SharesAnObjectOnAUrl(bucketName, tt.args.prefix, versionID, "604800s", accessKey, secretKey)
|
||||
assert.Nil(shareError)
|
||||
if shareError != nil {
|
||||
log.Println(shareError)
|
||||
|
||||
@@ -36,17 +36,17 @@ import (
|
||||
// swagger:model bucketVersioningResponse
|
||||
type BucketVersioningResponse struct {
|
||||
|
||||
// exclude folders
|
||||
ExcludeFolders bool `json:"ExcludeFolders,omitempty"`
|
||||
|
||||
// excluded prefixes
|
||||
ExcludedPrefixes []*BucketVersioningResponseExcludedPrefixesItems0 `json:"ExcludedPrefixes"`
|
||||
|
||||
// m f a delete
|
||||
MFADelete string `json:"MFADelete,omitempty"`
|
||||
|
||||
// exclude folders
|
||||
ExcludeFolders bool `json:"excludeFolders,omitempty"`
|
||||
|
||||
// excluded prefixes
|
||||
ExcludedPrefixes []*BucketVersioningResponseExcludedPrefixesItems0 `json:"excludedPrefixes"`
|
||||
|
||||
// status
|
||||
Status string `json:"Status,omitempty"`
|
||||
Status string `json:"status,omitempty"`
|
||||
}
|
||||
|
||||
// Validate validates this bucket versioning response
|
||||
@@ -76,9 +76,9 @@ func (m *BucketVersioningResponse) validateExcludedPrefixes(formats strfmt.Regis
|
||||
if m.ExcludedPrefixes[i] != nil {
|
||||
if err := m.ExcludedPrefixes[i].Validate(formats); err != nil {
|
||||
if ve, ok := err.(*errors.Validation); ok {
|
||||
return ve.ValidateName("ExcludedPrefixes" + "." + strconv.Itoa(i))
|
||||
return ve.ValidateName("excludedPrefixes" + "." + strconv.Itoa(i))
|
||||
} else if ce, ok := err.(*errors.CompositeError); ok {
|
||||
return ce.ValidateName("ExcludedPrefixes" + "." + strconv.Itoa(i))
|
||||
return ce.ValidateName("excludedPrefixes" + "." + strconv.Itoa(i))
|
||||
}
|
||||
return err
|
||||
}
|
||||
@@ -110,9 +110,9 @@ func (m *BucketVersioningResponse) contextValidateExcludedPrefixes(ctx context.C
|
||||
if m.ExcludedPrefixes[i] != nil {
|
||||
if err := m.ExcludedPrefixes[i].ContextValidate(ctx, formats); err != nil {
|
||||
if ve, ok := err.(*errors.Validation); ok {
|
||||
return ve.ValidateName("ExcludedPrefixes" + "." + strconv.Itoa(i))
|
||||
return ve.ValidateName("excludedPrefixes" + "." + strconv.Itoa(i))
|
||||
} else if ce, ok := err.(*errors.CompositeError); ok {
|
||||
return ce.ValidateName("ExcludedPrefixes" + "." + strconv.Itoa(i))
|
||||
return ce.ValidateName("excludedPrefixes" + "." + strconv.Itoa(i))
|
||||
}
|
||||
return err
|
||||
}
|
||||
@@ -147,7 +147,7 @@ func (m *BucketVersioningResponse) UnmarshalBinary(b []byte) error {
|
||||
type BucketVersioningResponseExcludedPrefixesItems0 struct {
|
||||
|
||||
// prefix
|
||||
Prefix string `json:"Prefix,omitempty"`
|
||||
Prefix string `json:"prefix,omitempty"`
|
||||
}
|
||||
|
||||
// Validate validates this bucket versioning response excluded prefixes items0
|
||||
|
||||
@@ -38,8 +38,8 @@ import (
|
||||
// swagger:model loginDetails
|
||||
type LoginDetails struct {
|
||||
|
||||
// is direct p v
|
||||
IsDirectPV bool `json:"isDirectPV,omitempty"`
|
||||
// animated login
|
||||
AnimatedLogin bool `json:"animatedLogin,omitempty"`
|
||||
|
||||
// is k8 s
|
||||
IsK8S bool `json:"isK8S,omitempty"`
|
||||
|
||||
142
models/share_request.go
Normal file
142
models/share_request.go
Normal file
@@ -0,0 +1,142 @@
|
||||
// Code generated by go-swagger; DO NOT EDIT.
|
||||
|
||||
// This file is part of MinIO Console Server
|
||||
// Copyright (c) 2023 MinIO, Inc.
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU Affero General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
//
|
||||
|
||||
package models
|
||||
|
||||
// This file was generated by the swagger tool.
|
||||
// Editing this file might prove futile when you re-run the swagger generate command
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/go-openapi/errors"
|
||||
"github.com/go-openapi/strfmt"
|
||||
"github.com/go-openapi/swag"
|
||||
"github.com/go-openapi/validate"
|
||||
)
|
||||
|
||||
// ShareRequest share request
|
||||
//
|
||||
// swagger:model shareRequest
|
||||
type ShareRequest struct {
|
||||
|
||||
// access key
|
||||
// Required: true
|
||||
AccessKey *string `json:"access_key"`
|
||||
|
||||
// expires
|
||||
Expires string `json:"expires,omitempty"`
|
||||
|
||||
// prefix
|
||||
// Required: true
|
||||
Prefix *string `json:"prefix"`
|
||||
|
||||
// secret key
|
||||
// Required: true
|
||||
SecretKey *string `json:"secret_key"`
|
||||
|
||||
// version id
|
||||
// Required: true
|
||||
VersionID *string `json:"version_id"`
|
||||
}
|
||||
|
||||
// Validate validates this share request
|
||||
func (m *ShareRequest) Validate(formats strfmt.Registry) error {
|
||||
var res []error
|
||||
|
||||
if err := m.validateAccessKey(formats); err != nil {
|
||||
res = append(res, err)
|
||||
}
|
||||
|
||||
if err := m.validatePrefix(formats); err != nil {
|
||||
res = append(res, err)
|
||||
}
|
||||
|
||||
if err := m.validateSecretKey(formats); err != nil {
|
||||
res = append(res, err)
|
||||
}
|
||||
|
||||
if err := m.validateVersionID(formats); err != nil {
|
||||
res = append(res, err)
|
||||
}
|
||||
|
||||
if len(res) > 0 {
|
||||
return errors.CompositeValidationError(res...)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ShareRequest) validateAccessKey(formats strfmt.Registry) error {
|
||||
|
||||
if err := validate.Required("access_key", "body", m.AccessKey); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ShareRequest) validatePrefix(formats strfmt.Registry) error {
|
||||
|
||||
if err := validate.Required("prefix", "body", m.Prefix); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ShareRequest) validateSecretKey(formats strfmt.Registry) error {
|
||||
|
||||
if err := validate.Required("secret_key", "body", m.SecretKey); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ShareRequest) validateVersionID(formats strfmt.Registry) error {
|
||||
|
||||
if err := validate.Required("version_id", "body", m.VersionID); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// ContextValidate validates this share request based on context it is used
|
||||
func (m *ShareRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// MarshalBinary interface implementation
|
||||
func (m *ShareRequest) MarshalBinary() ([]byte, error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
return swag.WriteJSON(m)
|
||||
}
|
||||
|
||||
// UnmarshalBinary interface implementation
|
||||
func (m *ShareRequest) UnmarshalBinary(b []byte) error {
|
||||
var res ShareRequest
|
||||
if err := swag.ReadJSON(b, &res); err != nil {
|
||||
return err
|
||||
}
|
||||
*m = res
|
||||
return nil
|
||||
}
|
||||
@@ -5,6 +5,11 @@ build-static:
|
||||
@if [ -f "${NVM_DIR}/nvm.sh" ]; then \. "${NVM_DIR}/nvm.sh" && nvm install && nvm use; fi && \
|
||||
NODE_OPTIONS=--openssl-legacy-provider yarn build
|
||||
|
||||
build-static-istanbul-coverage:
|
||||
@echo "Building frontend static assets to 'build'"
|
||||
@if [ -f "${NVM_DIR}/nvm.sh" ]; then \. "${NVM_DIR}/nvm.sh" && nvm install && nvm use; fi && \
|
||||
NODE_OPTIONS=--openssl-legacy-provider yarn buildistanbulcoverage
|
||||
|
||||
test-warnings:
|
||||
./check-warnings.sh
|
||||
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
|
||||
|
||||
Requirements: `yarn` and [node](https://nodejs.org/en/download)
|
||||
|
||||
## Available Scripts
|
||||
|
||||
In the project directory, you can run:
|
||||
In the `/portal-ui` directory, you can run:
|
||||
|
||||
### `yarn start`
|
||||
|
||||
@@ -12,6 +14,8 @@ Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
|
||||
The page will reload if you make edits.<br />
|
||||
You will also see any lint errors in the console.
|
||||
|
||||
> Note: If it's the first time running `yarn`, you might need to run `yarn install` before the `start` command.
|
||||
|
||||
### `yarn test`
|
||||
|
||||
Launches the test runner in the interactive watch mode.<br />
|
||||
|
||||
@@ -1,123 +1,140 @@
|
||||
{
|
||||
"files": {
|
||||
"main.css": "./static/css/main.57e739f5.css",
|
||||
"main.js": "./static/js/main.46564223.js",
|
||||
"main.css": "./static/css/main.7f39beab.css",
|
||||
"main.js": "./static/js/main.7d87c452.js",
|
||||
"static/js/1260.a025e586.chunk.js": "./static/js/1260.a025e586.chunk.js",
|
||||
"static/js/6914.8835970e.chunk.js": "./static/js/6914.8835970e.chunk.js",
|
||||
"static/js/9121.4999947f.chunk.js": "./static/js/9121.4999947f.chunk.js",
|
||||
"static/js/1829.4291766b.chunk.js": "./static/js/1829.4291766b.chunk.js",
|
||||
"static/js/6272.11d7337f.chunk.js": "./static/js/6272.11d7337f.chunk.js",
|
||||
"static/js/5088.00beec7c.chunk.js": "./static/js/5088.00beec7c.chunk.js",
|
||||
"static/js/6914.bb5d420f.chunk.js": "./static/js/6914.bb5d420f.chunk.js",
|
||||
"static/js/3446.9ea9fd9e.chunk.js": "./static/js/3446.9ea9fd9e.chunk.js",
|
||||
"static/js/1829.929d5c39.chunk.js": "./static/js/1829.929d5c39.chunk.js",
|
||||
"static/js/193.235dd13b.chunk.js": "./static/js/193.235dd13b.chunk.js",
|
||||
"static/js/5088.45c9824e.chunk.js": "./static/js/5088.45c9824e.chunk.js",
|
||||
"static/js/6122.e4ffcf6b.chunk.js": "./static/js/6122.e4ffcf6b.chunk.js",
|
||||
"static/js/628.0ae012b8.chunk.js": "./static/js/628.0ae012b8.chunk.js",
|
||||
"static/js/1380.f9c018ec.chunk.js": "./static/js/1380.f9c018ec.chunk.js",
|
||||
"static/js/9635.4c87b735.chunk.js": "./static/js/9635.4c87b735.chunk.js",
|
||||
"static/js/2338.53498b12.chunk.js": "./static/js/2338.53498b12.chunk.js",
|
||||
"static/js/4335.edd9cf5e.chunk.js": "./static/js/4335.edd9cf5e.chunk.js",
|
||||
"static/js/8521.5c1c6d31.chunk.js": "./static/js/8521.5c1c6d31.chunk.js",
|
||||
"static/js/3543.03eba0f5.chunk.js": "./static/js/3543.03eba0f5.chunk.js",
|
||||
"static/js/4061.1db80a47.chunk.js": "./static/js/4061.1db80a47.chunk.js",
|
||||
"static/js/3067.9e44162a.chunk.js": "./static/js/3067.9e44162a.chunk.js",
|
||||
"static/js/2637.eab4cad8.chunk.js": "./static/js/2637.eab4cad8.chunk.js",
|
||||
"static/css/5370.3279acb8.chunk.css": "./static/css/5370.3279acb8.chunk.css",
|
||||
"static/js/5370.9576aa21.chunk.js": "./static/js/5370.9576aa21.chunk.js",
|
||||
"static/js/701.ab3ceba2.chunk.js": "./static/js/701.ab3ceba2.chunk.js",
|
||||
"static/js/7821.5a87cfb0.chunk.js": "./static/js/7821.5a87cfb0.chunk.js",
|
||||
"static/css/284.3279acb8.chunk.css": "./static/css/284.3279acb8.chunk.css",
|
||||
"static/js/284.f9dbc9d8.chunk.js": "./static/js/284.f9dbc9d8.chunk.js",
|
||||
"static/js/8388.fd34271e.chunk.js": "./static/js/8388.fd34271e.chunk.js",
|
||||
"static/css/6593.3279acb8.chunk.css": "./static/css/6593.3279acb8.chunk.css",
|
||||
"static/js/6593.f09d945f.chunk.js": "./static/js/6593.f09d945f.chunk.js",
|
||||
"static/css/2433.3279acb8.chunk.css": "./static/css/2433.3279acb8.chunk.css",
|
||||
"static/js/2433.cd24fabf.chunk.js": "./static/js/2433.cd24fabf.chunk.js",
|
||||
"static/css/1195.3279acb8.chunk.css": "./static/css/1195.3279acb8.chunk.css",
|
||||
"static/js/1195.8483f929.chunk.js": "./static/js/1195.8483f929.chunk.js",
|
||||
"static/js/191.b50b4104.chunk.js": "./static/js/191.b50b4104.chunk.js",
|
||||
"static/js/1329.98d80e22.chunk.js": "./static/js/1329.98d80e22.chunk.js",
|
||||
"static/js/7614.527036f5.chunk.js": "./static/js/7614.527036f5.chunk.js",
|
||||
"static/js/1690.4e6b342c.chunk.js": "./static/js/1690.4e6b342c.chunk.js",
|
||||
"static/js/6491.83aa26f7.chunk.js": "./static/js/6491.83aa26f7.chunk.js",
|
||||
"static/js/4902.f064f175.chunk.js": "./static/js/4902.f064f175.chunk.js",
|
||||
"static/js/1432.6e142c2c.chunk.js": "./static/js/1432.6e142c2c.chunk.js",
|
||||
"static/js/3171.6750e8c7.chunk.js": "./static/js/3171.6750e8c7.chunk.js",
|
||||
"static/js/8360.bb4fd800.chunk.js": "./static/js/8360.bb4fd800.chunk.js",
|
||||
"static/js/6577.4b3c8b41.chunk.js": "./static/js/6577.4b3c8b41.chunk.js",
|
||||
"static/js/3875.5db2c08f.chunk.js": "./static/js/3875.5db2c08f.chunk.js",
|
||||
"static/js/3115.da3a98f3.chunk.js": "./static/js/3115.da3a98f3.chunk.js",
|
||||
"static/js/5522.9c77c391.chunk.js": "./static/js/5522.9c77c391.chunk.js",
|
||||
"static/js/977.4c29a863.chunk.js": "./static/js/977.4c29a863.chunk.js",
|
||||
"static/js/6686.ede27280.chunk.js": "./static/js/6686.ede27280.chunk.js",
|
||||
"static/js/9059.155bb503.chunk.js": "./static/js/9059.155bb503.chunk.js",
|
||||
"static/js/3819.5ec91bdd.chunk.js": "./static/js/3819.5ec91bdd.chunk.js",
|
||||
"static/js/6247.af0fb000.chunk.js": "./static/js/6247.af0fb000.chunk.js",
|
||||
"static/js/4414.ff5f95b9.chunk.js": "./static/js/4414.ff5f95b9.chunk.js",
|
||||
"static/js/8833.4ba5da15.chunk.js": "./static/js/8833.4ba5da15.chunk.js",
|
||||
"static/js/1516.d1e7e873.chunk.js": "./static/js/1516.d1e7e873.chunk.js",
|
||||
"static/js/483.b039dcc0.chunk.js": "./static/js/483.b039dcc0.chunk.js",
|
||||
"static/js/4114.9ce1a962.chunk.js": "./static/js/4114.9ce1a962.chunk.js",
|
||||
"static/js/6895.143165e2.chunk.js": "./static/js/6895.143165e2.chunk.js",
|
||||
"static/js/4874.41a5c449.chunk.js": "./static/js/4874.41a5c449.chunk.js",
|
||||
"static/css/2050.3279acb8.chunk.css": "./static/css/2050.3279acb8.chunk.css",
|
||||
"static/js/2050.b9acf1f9.chunk.js": "./static/js/2050.b9acf1f9.chunk.js",
|
||||
"static/js/3956.9207ef85.chunk.js": "./static/js/3956.9207ef85.chunk.js",
|
||||
"static/js/9221.983fd268.chunk.js": "./static/js/9221.983fd268.chunk.js",
|
||||
"static/js/8896.ff4564b8.chunk.js": "./static/js/8896.ff4564b8.chunk.js",
|
||||
"static/js/9134.9753fc42.chunk.js": "./static/js/9134.9753fc42.chunk.js",
|
||||
"static/js/5223.650cfa3e.chunk.js": "./static/js/5223.650cfa3e.chunk.js",
|
||||
"static/js/5661.7b56bafe.chunk.js": "./static/js/5661.7b56bafe.chunk.js",
|
||||
"static/js/7134.6765e5b6.chunk.js": "./static/js/7134.6765e5b6.chunk.js",
|
||||
"static/js/3034.d036146c.chunk.js": "./static/js/3034.d036146c.chunk.js",
|
||||
"static/css/8925.3279acb8.chunk.css": "./static/css/8925.3279acb8.chunk.css",
|
||||
"static/js/8925.e3d0dd77.chunk.js": "./static/js/8925.e3d0dd77.chunk.js",
|
||||
"static/js/711.a5499cb1.chunk.js": "./static/js/711.a5499cb1.chunk.js",
|
||||
"static/js/6901.79047196.chunk.js": "./static/js/6901.79047196.chunk.js",
|
||||
"static/js/2185.4db0ed3d.chunk.js": "./static/js/2185.4db0ed3d.chunk.js",
|
||||
"static/js/9968.e06e8995.chunk.js": "./static/js/9968.e06e8995.chunk.js",
|
||||
"static/js/7494.3579143d.chunk.js": "./static/js/7494.3579143d.chunk.js",
|
||||
"static/js/4738.9e3d5260.chunk.js": "./static/js/4738.9e3d5260.chunk.js",
|
||||
"static/js/9918.7eee2adc.chunk.js": "./static/js/9918.7eee2adc.chunk.js",
|
||||
"static/js/5702.fa73d842.chunk.js": "./static/js/5702.fa73d842.chunk.js",
|
||||
"static/js/2512.f29a3687.chunk.js": "./static/js/2512.f29a3687.chunk.js",
|
||||
"static/js/51.b4820ff4.chunk.js": "./static/js/51.b4820ff4.chunk.js",
|
||||
"static/js/312.71a85ec1.chunk.js": "./static/js/312.71a85ec1.chunk.js",
|
||||
"static/js/2032.d32831e1.chunk.js": "./static/js/2032.d32831e1.chunk.js",
|
||||
"static/js/4619.000c3900.chunk.js": "./static/js/4619.000c3900.chunk.js",
|
||||
"static/js/8990.d6246293.chunk.js": "./static/js/8990.d6246293.chunk.js",
|
||||
"static/js/8455.de8a804d.chunk.js": "./static/js/8455.de8a804d.chunk.js",
|
||||
"static/css/7233.3279acb8.chunk.css": "./static/css/7233.3279acb8.chunk.css",
|
||||
"static/js/7233.38b9bfcf.chunk.js": "./static/js/7233.38b9bfcf.chunk.js",
|
||||
"static/js/1604.8a9dcedd.chunk.js": "./static/js/1604.8a9dcedd.chunk.js",
|
||||
"static/js/9952.dc18fe46.chunk.js": "./static/js/9952.dc18fe46.chunk.js",
|
||||
"static/js/402.4bb1d687.chunk.js": "./static/js/402.4bb1d687.chunk.js",
|
||||
"static/js/1705.27697aac.chunk.js": "./static/js/1705.27697aac.chunk.js",
|
||||
"static/js/1581.e0b40512.chunk.js": "./static/js/1581.e0b40512.chunk.js",
|
||||
"static/js/455.12104f9c.chunk.js": "./static/js/455.12104f9c.chunk.js",
|
||||
"static/js/2921.f2282e66.chunk.js": "./static/js/2921.f2282e66.chunk.js",
|
||||
"static/js/889.7aba45d8.chunk.js": "./static/js/889.7aba45d8.chunk.js",
|
||||
"static/js/9088.e68839ae.chunk.js": "./static/js/9088.e68839ae.chunk.js",
|
||||
"static/js/247.5fb5050b.chunk.js": "./static/js/247.5fb5050b.chunk.js",
|
||||
"static/js/2763.a0e53c20.chunk.js": "./static/js/2763.a0e53c20.chunk.js",
|
||||
"static/js/3691.cec964f8.chunk.js": "./static/js/3691.cec964f8.chunk.js",
|
||||
"static/js/6481.c1e3d223.chunk.js": "./static/js/6481.c1e3d223.chunk.js",
|
||||
"static/js/1520.6ee7f5c9.chunk.js": "./static/js/1520.6ee7f5c9.chunk.js",
|
||||
"static/js/3682.3b92900e.chunk.js": "./static/js/3682.3b92900e.chunk.js",
|
||||
"static/js/1918.b61ed655.chunk.js": "./static/js/1918.b61ed655.chunk.js",
|
||||
"static/js/9683.1e217b9a.chunk.js": "./static/js/9683.1e217b9a.chunk.js",
|
||||
"static/js/808.1c5ccab3.chunk.js": "./static/js/808.1c5ccab3.chunk.js",
|
||||
"static/js/8060.72b9138c.chunk.js": "./static/js/8060.72b9138c.chunk.js",
|
||||
"static/js/6765.17759907.chunk.js": "./static/js/6765.17759907.chunk.js",
|
||||
"static/js/2338.f2e3b9d4.chunk.js": "./static/js/2338.f2e3b9d4.chunk.js",
|
||||
"static/js/4335.e73f294b.chunk.js": "./static/js/4335.e73f294b.chunk.js",
|
||||
"static/js/9315.94bc4162.chunk.js": "./static/js/9315.94bc4162.chunk.js",
|
||||
"static/js/842.94d22304.chunk.js": "./static/js/842.94d22304.chunk.js",
|
||||
"static/js/4061.c26d8978.chunk.js": "./static/js/4061.c26d8978.chunk.js",
|
||||
"static/js/3067.a79bb499.chunk.js": "./static/js/3067.a79bb499.chunk.js",
|
||||
"static/js/2637.be6faba9.chunk.js": "./static/js/2637.be6faba9.chunk.js",
|
||||
"static/css/5370.6d5cfeb1.chunk.css": "./static/css/5370.6d5cfeb1.chunk.css",
|
||||
"static/js/5370.bcc67c67.chunk.js": "./static/js/5370.bcc67c67.chunk.js",
|
||||
"static/js/701.3916b3b0.chunk.js": "./static/js/701.3916b3b0.chunk.js",
|
||||
"static/js/7821.30d84224.chunk.js": "./static/js/7821.30d84224.chunk.js",
|
||||
"static/css/284.6d5cfeb1.chunk.css": "./static/css/284.6d5cfeb1.chunk.css",
|
||||
"static/js/284.2272d607.chunk.js": "./static/js/284.2272d607.chunk.js",
|
||||
"static/js/8388.85d69c36.chunk.js": "./static/js/8388.85d69c36.chunk.js",
|
||||
"static/css/9781.6d5cfeb1.chunk.css": "./static/css/9781.6d5cfeb1.chunk.css",
|
||||
"static/js/9781.5138af65.chunk.js": "./static/js/9781.5138af65.chunk.js",
|
||||
"static/css/8936.6d5cfeb1.chunk.css": "./static/css/8936.6d5cfeb1.chunk.css",
|
||||
"static/js/8936.32db27d8.chunk.js": "./static/js/8936.32db27d8.chunk.js",
|
||||
"static/css/1195.6d5cfeb1.chunk.css": "./static/css/1195.6d5cfeb1.chunk.css",
|
||||
"static/js/1195.c88c104c.chunk.js": "./static/js/1195.c88c104c.chunk.js",
|
||||
"static/js/2766.a907ade6.chunk.js": "./static/js/2766.a907ade6.chunk.js",
|
||||
"static/js/8658.3e576725.chunk.js": "./static/js/8658.3e576725.chunk.js",
|
||||
"static/js/7614.c26e0388.chunk.js": "./static/js/7614.c26e0388.chunk.js",
|
||||
"static/js/1690.74411b75.chunk.js": "./static/js/1690.74411b75.chunk.js",
|
||||
"static/js/6491.cb84de50.chunk.js": "./static/js/6491.cb84de50.chunk.js",
|
||||
"static/js/4902.ca4d4b9b.chunk.js": "./static/js/4902.ca4d4b9b.chunk.js",
|
||||
"static/js/1432.0fd16e2a.chunk.js": "./static/js/1432.0fd16e2a.chunk.js",
|
||||
"static/js/9243.438cd458.chunk.js": "./static/js/9243.438cd458.chunk.js",
|
||||
"static/js/8360.09237eed.chunk.js": "./static/js/8360.09237eed.chunk.js",
|
||||
"static/js/6577.0dd0770b.chunk.js": "./static/js/6577.0dd0770b.chunk.js",
|
||||
"static/js/3875.1b1cdf95.chunk.js": "./static/js/3875.1b1cdf95.chunk.js",
|
||||
"static/js/3115.ea1636fa.chunk.js": "./static/js/3115.ea1636fa.chunk.js",
|
||||
"static/js/5708.f77982a5.chunk.js": "./static/js/5708.f77982a5.chunk.js",
|
||||
"static/js/977.f5285832.chunk.js": "./static/js/977.f5285832.chunk.js",
|
||||
"static/js/6686.4148281b.chunk.js": "./static/js/6686.4148281b.chunk.js",
|
||||
"static/js/5656.28a8d11c.chunk.js": "./static/js/5656.28a8d11c.chunk.js",
|
||||
"static/js/91.e520a97c.chunk.js": "./static/js/91.e520a97c.chunk.js",
|
||||
"static/js/9666.5da08ac7.chunk.js": "./static/js/9666.5da08ac7.chunk.js",
|
||||
"static/js/4414.bd064f0a.chunk.js": "./static/js/4414.bd064f0a.chunk.js",
|
||||
"static/js/8833.bffd8a72.chunk.js": "./static/js/8833.bffd8a72.chunk.js",
|
||||
"static/js/1516.77785cd8.chunk.js": "./static/js/1516.77785cd8.chunk.js",
|
||||
"static/js/483.6b4acaca.chunk.js": "./static/js/483.6b4acaca.chunk.js",
|
||||
"static/js/4114.7f28b8fd.chunk.js": "./static/js/4114.7f28b8fd.chunk.js",
|
||||
"static/js/6895.ede8e880.chunk.js": "./static/js/6895.ede8e880.chunk.js",
|
||||
"static/js/5465.8959d405.chunk.js": "./static/js/5465.8959d405.chunk.js",
|
||||
"static/css/1155.6d5cfeb1.chunk.css": "./static/css/1155.6d5cfeb1.chunk.css",
|
||||
"static/js/1155.77ab901b.chunk.js": "./static/js/1155.77ab901b.chunk.js",
|
||||
"static/js/3956.d190ab9d.chunk.js": "./static/js/3956.d190ab9d.chunk.js",
|
||||
"static/js/9221.9f74a390.chunk.js": "./static/js/9221.9f74a390.chunk.js",
|
||||
"static/js/8896.b42caa61.chunk.js": "./static/js/8896.b42caa61.chunk.js",
|
||||
"static/js/9134.c6c3f8d9.chunk.js": "./static/js/9134.c6c3f8d9.chunk.js",
|
||||
"static/js/5223.d053b523.chunk.js": "./static/js/5223.d053b523.chunk.js",
|
||||
"static/js/5661.53057d05.chunk.js": "./static/js/5661.53057d05.chunk.js",
|
||||
"static/js/6493.e56bf22e.chunk.js": "./static/js/6493.e56bf22e.chunk.js",
|
||||
"static/js/3034.81b1b236.chunk.js": "./static/js/3034.81b1b236.chunk.js",
|
||||
"static/css/8925.6d5cfeb1.chunk.css": "./static/css/8925.6d5cfeb1.chunk.css",
|
||||
"static/js/8925.804545ac.chunk.js": "./static/js/8925.804545ac.chunk.js",
|
||||
"static/js/711.aec34a54.chunk.js": "./static/js/711.aec34a54.chunk.js",
|
||||
"static/js/6901.67563dd6.chunk.js": "./static/js/6901.67563dd6.chunk.js",
|
||||
"static/js/2185.8253dd66.chunk.js": "./static/js/2185.8253dd66.chunk.js",
|
||||
"static/js/9968.392f895d.chunk.js": "./static/js/9968.392f895d.chunk.js",
|
||||
"static/js/5998.6de29890.chunk.js": "./static/js/5998.6de29890.chunk.js",
|
||||
"static/js/119.7142376a.chunk.js": "./static/js/119.7142376a.chunk.js",
|
||||
"static/js/9918.f2916d91.chunk.js": "./static/js/9918.f2916d91.chunk.js",
|
||||
"static/js/2733.4eb78cde.chunk.js": "./static/js/2733.4eb78cde.chunk.js",
|
||||
"static/js/9002.9ee60291.chunk.js": "./static/js/9002.9ee60291.chunk.js",
|
||||
"static/js/51.3b7ac0bb.chunk.js": "./static/js/51.3b7ac0bb.chunk.js",
|
||||
"static/js/312.36182e3e.chunk.js": "./static/js/312.36182e3e.chunk.js",
|
||||
"static/js/2032.54dedb37.chunk.js": "./static/js/2032.54dedb37.chunk.js",
|
||||
"static/js/4619.c77024f7.chunk.js": "./static/js/4619.c77024f7.chunk.js",
|
||||
"static/js/8990.a79c2757.chunk.js": "./static/js/8990.a79c2757.chunk.js",
|
||||
"static/js/8455.28c47271.chunk.js": "./static/js/8455.28c47271.chunk.js",
|
||||
"static/css/7233.6d5cfeb1.chunk.css": "./static/css/7233.6d5cfeb1.chunk.css",
|
||||
"static/js/7233.27f033e9.chunk.js": "./static/js/7233.27f033e9.chunk.js",
|
||||
"static/js/1609.f0705551.chunk.js": "./static/js/1609.f0705551.chunk.js",
|
||||
"static/js/9952.b6aabb99.chunk.js": "./static/js/9952.b6aabb99.chunk.js",
|
||||
"static/js/402.7e563de3.chunk.js": "./static/js/402.7e563de3.chunk.js",
|
||||
"static/js/1705.bf628870.chunk.js": "./static/js/1705.bf628870.chunk.js",
|
||||
"static/js/1581.fe2c6b2c.chunk.js": "./static/js/1581.fe2c6b2c.chunk.js",
|
||||
"static/js/455.10c22444.chunk.js": "./static/js/455.10c22444.chunk.js",
|
||||
"static/js/2921.9f05320f.chunk.js": "./static/js/2921.9f05320f.chunk.js",
|
||||
"static/js/889.954fb6a3.chunk.js": "./static/js/889.954fb6a3.chunk.js",
|
||||
"static/js/9088.f4b08dc0.chunk.js": "./static/js/9088.f4b08dc0.chunk.js",
|
||||
"static/js/6639.5cc622e2.chunk.js": "./static/js/6639.5cc622e2.chunk.js",
|
||||
"static/js/2763.94aac2f6.chunk.js": "./static/js/2763.94aac2f6.chunk.js",
|
||||
"static/js/5994.630a8a7b.chunk.js": "./static/js/5994.630a8a7b.chunk.js",
|
||||
"static/js/7391.a8c89f77.chunk.js": "./static/js/7391.a8c89f77.chunk.js",
|
||||
"static/js/2303.32f1acf1.chunk.js": "./static/js/2303.32f1acf1.chunk.js",
|
||||
"static/js/3691.8a4fe1f5.chunk.js": "./static/js/3691.8a4fe1f5.chunk.js",
|
||||
"static/js/6481.13d4264b.chunk.js": "./static/js/6481.13d4264b.chunk.js",
|
||||
"static/js/1520.af5d5afd.chunk.js": "./static/js/1520.af5d5afd.chunk.js",
|
||||
"static/js/3682.4537dc89.chunk.js": "./static/js/3682.4537dc89.chunk.js",
|
||||
"static/js/1918.5ab76596.chunk.js": "./static/js/1918.5ab76596.chunk.js",
|
||||
"static/js/7847.ac3e4228.chunk.js": "./static/js/7847.ac3e4228.chunk.js",
|
||||
"static/js/6195.f15db24b.chunk.js": "./static/js/6195.f15db24b.chunk.js",
|
||||
"static/js/1427.470a9bca.chunk.js": "./static/js/1427.470a9bca.chunk.js",
|
||||
"static/js/3801.e125737d.chunk.js": "./static/js/3801.e125737d.chunk.js",
|
||||
"static/js/601.6e9a5467.chunk.js": "./static/js/601.6e9a5467.chunk.js",
|
||||
"static/js/9414.12ffc9ac.chunk.js": "./static/js/9414.12ffc9ac.chunk.js",
|
||||
"static/js/9414.038100c0.chunk.js": "./static/js/9414.038100c0.chunk.js",
|
||||
"static/js/8173.8aba7982.chunk.js": "./static/js/8173.8aba7982.chunk.js",
|
||||
"static/js/5415.dbae49d4.chunk.js": "./static/js/5415.dbae49d4.chunk.js",
|
||||
"static/js/8265.a7f4cd6e.chunk.js": "./static/js/8265.a7f4cd6e.chunk.js",
|
||||
"static/js/5284.fba0c13b.chunk.js": "./static/js/5284.fba0c13b.chunk.js",
|
||||
"static/js/6315.3238dd2e.chunk.js": "./static/js/6315.3238dd2e.chunk.js",
|
||||
"static/js/8766.5d6104c6.chunk.js": "./static/js/8766.5d6104c6.chunk.js",
|
||||
"static/js/6503.67a16b55.chunk.js": "./static/js/6503.67a16b55.chunk.js",
|
||||
"static/js/6169.e0c2c6d2.chunk.js": "./static/js/6169.e0c2c6d2.chunk.js",
|
||||
"static/js/8968.3926ed4d.chunk.js": "./static/js/8968.3926ed4d.chunk.js",
|
||||
"static/js/7986.faa0de32.chunk.js": "./static/js/7986.faa0de32.chunk.js",
|
||||
"static/js/1803.10c741c8.chunk.js": "./static/js/1803.10c741c8.chunk.js",
|
||||
"static/js/6662.34c547c9.chunk.js": "./static/js/6662.34c547c9.chunk.js",
|
||||
"static/js/91.66e7e796.chunk.js": "./static/js/91.66e7e796.chunk.js",
|
||||
"static/js/6037.7ed8da7f.chunk.js": "./static/js/6037.7ed8da7f.chunk.js",
|
||||
"static/js/375.5aee7265.chunk.js": "./static/js/375.5aee7265.chunk.js",
|
||||
"static/js/5284.4c8d46d3.chunk.js": "./static/js/5284.4c8d46d3.chunk.js",
|
||||
"static/js/9425.3248dd51.chunk.js": "./static/js/9425.3248dd51.chunk.js",
|
||||
"static/js/4102.543f88a5.chunk.js": "./static/js/4102.543f88a5.chunk.js",
|
||||
"static/js/6903.ea5c8ae0.chunk.js": "./static/js/6903.ea5c8ae0.chunk.js",
|
||||
"static/js/5871.10749c09.chunk.js": "./static/js/5871.10749c09.chunk.js",
|
||||
"static/js/2960.ff0e1ef0.chunk.js": "./static/js/2960.ff0e1ef0.chunk.js",
|
||||
"static/js/9135.9f49ec5b.chunk.js": "./static/js/9135.9f49ec5b.chunk.js",
|
||||
"static/js/357.b43cdd5a.chunk.js": "./static/js/357.b43cdd5a.chunk.js",
|
||||
"static/js/3141.674df617.chunk.js": "./static/js/3141.674df617.chunk.js",
|
||||
"static/js/1388.babd16fa.chunk.js": "./static/js/1388.babd16fa.chunk.js",
|
||||
"static/js/4251.d89d9645.chunk.js": "./static/js/4251.d89d9645.chunk.js",
|
||||
"static/js/24.604f9040.chunk.js": "./static/js/24.604f9040.chunk.js",
|
||||
"static/js/222.7f3906bd.chunk.js": "./static/js/222.7f3906bd.chunk.js",
|
||||
"static/js/7521.66cdcc44.chunk.js": "./static/js/7521.66cdcc44.chunk.js",
|
||||
"static/js/2422.53d27798.chunk.js": "./static/js/2422.53d27798.chunk.js",
|
||||
"static/js/9302.9404e216.chunk.js": "./static/js/9302.9404e216.chunk.js",
|
||||
"static/js/221.45a05e5d.chunk.js": "./static/js/221.45a05e5d.chunk.js",
|
||||
"static/js/5292.9f745b3f.chunk.js": "./static/js/5292.9f745b3f.chunk.js",
|
||||
"static/js/2358.4c8b0e1c.chunk.js": "./static/js/2358.4c8b0e1c.chunk.js",
|
||||
"static/js/2983.3ffd4ad8.chunk.js": "./static/js/2983.3ffd4ad8.chunk.js",
|
||||
"static/js/4169.aeebcd8e.chunk.js": "./static/js/4169.aeebcd8e.chunk.js",
|
||||
"static/media/videoBG.mp4": "./static/media/videoBG.17363418b3c2246a0e27.mp4",
|
||||
"static/media/loginAnimationPoster.png": "./static/media/loginAnimationPoster.9aa924bfe619e71d5d29.png",
|
||||
"static/media/Inter-BoldItalic.woff": "./static/media/Inter-BoldItalic.b376885042f6c961a541.woff",
|
||||
@@ -139,127 +156,144 @@
|
||||
"static/media/Inter-Thin.woff2": "./static/media/Inter-Thin.fff2a096db014f6239d4.woff2",
|
||||
"static/media/Inter-Regular.woff2": "./static/media/Inter-Regular.c8ba52b05a9ef10f4758.woff2",
|
||||
"index.html": "./index.html",
|
||||
"main.57e739f5.css.map": "./static/css/main.57e739f5.css.map",
|
||||
"main.46564223.js.map": "./static/js/main.46564223.js.map",
|
||||
"main.7f39beab.css.map": "./static/css/main.7f39beab.css.map",
|
||||
"main.7d87c452.js.map": "./static/js/main.7d87c452.js.map",
|
||||
"1260.a025e586.chunk.js.map": "./static/js/1260.a025e586.chunk.js.map",
|
||||
"6914.8835970e.chunk.js.map": "./static/js/6914.8835970e.chunk.js.map",
|
||||
"9121.4999947f.chunk.js.map": "./static/js/9121.4999947f.chunk.js.map",
|
||||
"1829.4291766b.chunk.js.map": "./static/js/1829.4291766b.chunk.js.map",
|
||||
"6272.11d7337f.chunk.js.map": "./static/js/6272.11d7337f.chunk.js.map",
|
||||
"5088.00beec7c.chunk.js.map": "./static/js/5088.00beec7c.chunk.js.map",
|
||||
"6914.bb5d420f.chunk.js.map": "./static/js/6914.bb5d420f.chunk.js.map",
|
||||
"3446.9ea9fd9e.chunk.js.map": "./static/js/3446.9ea9fd9e.chunk.js.map",
|
||||
"1829.929d5c39.chunk.js.map": "./static/js/1829.929d5c39.chunk.js.map",
|
||||
"193.235dd13b.chunk.js.map": "./static/js/193.235dd13b.chunk.js.map",
|
||||
"5088.45c9824e.chunk.js.map": "./static/js/5088.45c9824e.chunk.js.map",
|
||||
"6122.e4ffcf6b.chunk.js.map": "./static/js/6122.e4ffcf6b.chunk.js.map",
|
||||
"628.0ae012b8.chunk.js.map": "./static/js/628.0ae012b8.chunk.js.map",
|
||||
"1380.f9c018ec.chunk.js.map": "./static/js/1380.f9c018ec.chunk.js.map",
|
||||
"9635.4c87b735.chunk.js.map": "./static/js/9635.4c87b735.chunk.js.map",
|
||||
"2338.53498b12.chunk.js.map": "./static/js/2338.53498b12.chunk.js.map",
|
||||
"4335.edd9cf5e.chunk.js.map": "./static/js/4335.edd9cf5e.chunk.js.map",
|
||||
"8521.5c1c6d31.chunk.js.map": "./static/js/8521.5c1c6d31.chunk.js.map",
|
||||
"3543.03eba0f5.chunk.js.map": "./static/js/3543.03eba0f5.chunk.js.map",
|
||||
"4061.1db80a47.chunk.js.map": "./static/js/4061.1db80a47.chunk.js.map",
|
||||
"3067.9e44162a.chunk.js.map": "./static/js/3067.9e44162a.chunk.js.map",
|
||||
"2637.eab4cad8.chunk.js.map": "./static/js/2637.eab4cad8.chunk.js.map",
|
||||
"5370.3279acb8.chunk.css.map": "./static/css/5370.3279acb8.chunk.css.map",
|
||||
"5370.9576aa21.chunk.js.map": "./static/js/5370.9576aa21.chunk.js.map",
|
||||
"701.ab3ceba2.chunk.js.map": "./static/js/701.ab3ceba2.chunk.js.map",
|
||||
"7821.5a87cfb0.chunk.js.map": "./static/js/7821.5a87cfb0.chunk.js.map",
|
||||
"284.3279acb8.chunk.css.map": "./static/css/284.3279acb8.chunk.css.map",
|
||||
"284.f9dbc9d8.chunk.js.map": "./static/js/284.f9dbc9d8.chunk.js.map",
|
||||
"8388.fd34271e.chunk.js.map": "./static/js/8388.fd34271e.chunk.js.map",
|
||||
"6593.3279acb8.chunk.css.map": "./static/css/6593.3279acb8.chunk.css.map",
|
||||
"6593.f09d945f.chunk.js.map": "./static/js/6593.f09d945f.chunk.js.map",
|
||||
"2433.3279acb8.chunk.css.map": "./static/css/2433.3279acb8.chunk.css.map",
|
||||
"2433.cd24fabf.chunk.js.map": "./static/js/2433.cd24fabf.chunk.js.map",
|
||||
"1195.3279acb8.chunk.css.map": "./static/css/1195.3279acb8.chunk.css.map",
|
||||
"1195.8483f929.chunk.js.map": "./static/js/1195.8483f929.chunk.js.map",
|
||||
"191.b50b4104.chunk.js.map": "./static/js/191.b50b4104.chunk.js.map",
|
||||
"1329.98d80e22.chunk.js.map": "./static/js/1329.98d80e22.chunk.js.map",
|
||||
"7614.527036f5.chunk.js.map": "./static/js/7614.527036f5.chunk.js.map",
|
||||
"1690.4e6b342c.chunk.js.map": "./static/js/1690.4e6b342c.chunk.js.map",
|
||||
"6491.83aa26f7.chunk.js.map": "./static/js/6491.83aa26f7.chunk.js.map",
|
||||
"4902.f064f175.chunk.js.map": "./static/js/4902.f064f175.chunk.js.map",
|
||||
"1432.6e142c2c.chunk.js.map": "./static/js/1432.6e142c2c.chunk.js.map",
|
||||
"3171.6750e8c7.chunk.js.map": "./static/js/3171.6750e8c7.chunk.js.map",
|
||||
"8360.bb4fd800.chunk.js.map": "./static/js/8360.bb4fd800.chunk.js.map",
|
||||
"6577.4b3c8b41.chunk.js.map": "./static/js/6577.4b3c8b41.chunk.js.map",
|
||||
"3875.5db2c08f.chunk.js.map": "./static/js/3875.5db2c08f.chunk.js.map",
|
||||
"3115.da3a98f3.chunk.js.map": "./static/js/3115.da3a98f3.chunk.js.map",
|
||||
"5522.9c77c391.chunk.js.map": "./static/js/5522.9c77c391.chunk.js.map",
|
||||
"977.4c29a863.chunk.js.map": "./static/js/977.4c29a863.chunk.js.map",
|
||||
"6686.ede27280.chunk.js.map": "./static/js/6686.ede27280.chunk.js.map",
|
||||
"9059.155bb503.chunk.js.map": "./static/js/9059.155bb503.chunk.js.map",
|
||||
"3819.5ec91bdd.chunk.js.map": "./static/js/3819.5ec91bdd.chunk.js.map",
|
||||
"6247.af0fb000.chunk.js.map": "./static/js/6247.af0fb000.chunk.js.map",
|
||||
"4414.ff5f95b9.chunk.js.map": "./static/js/4414.ff5f95b9.chunk.js.map",
|
||||
"8833.4ba5da15.chunk.js.map": "./static/js/8833.4ba5da15.chunk.js.map",
|
||||
"1516.d1e7e873.chunk.js.map": "./static/js/1516.d1e7e873.chunk.js.map",
|
||||
"483.b039dcc0.chunk.js.map": "./static/js/483.b039dcc0.chunk.js.map",
|
||||
"4114.9ce1a962.chunk.js.map": "./static/js/4114.9ce1a962.chunk.js.map",
|
||||
"6895.143165e2.chunk.js.map": "./static/js/6895.143165e2.chunk.js.map",
|
||||
"4874.41a5c449.chunk.js.map": "./static/js/4874.41a5c449.chunk.js.map",
|
||||
"2050.3279acb8.chunk.css.map": "./static/css/2050.3279acb8.chunk.css.map",
|
||||
"2050.b9acf1f9.chunk.js.map": "./static/js/2050.b9acf1f9.chunk.js.map",
|
||||
"3956.9207ef85.chunk.js.map": "./static/js/3956.9207ef85.chunk.js.map",
|
||||
"9221.983fd268.chunk.js.map": "./static/js/9221.983fd268.chunk.js.map",
|
||||
"8896.ff4564b8.chunk.js.map": "./static/js/8896.ff4564b8.chunk.js.map",
|
||||
"9134.9753fc42.chunk.js.map": "./static/js/9134.9753fc42.chunk.js.map",
|
||||
"5223.650cfa3e.chunk.js.map": "./static/js/5223.650cfa3e.chunk.js.map",
|
||||
"5661.7b56bafe.chunk.js.map": "./static/js/5661.7b56bafe.chunk.js.map",
|
||||
"7134.6765e5b6.chunk.js.map": "./static/js/7134.6765e5b6.chunk.js.map",
|
||||
"3034.d036146c.chunk.js.map": "./static/js/3034.d036146c.chunk.js.map",
|
||||
"8925.3279acb8.chunk.css.map": "./static/css/8925.3279acb8.chunk.css.map",
|
||||
"8925.e3d0dd77.chunk.js.map": "./static/js/8925.e3d0dd77.chunk.js.map",
|
||||
"711.a5499cb1.chunk.js.map": "./static/js/711.a5499cb1.chunk.js.map",
|
||||
"6901.79047196.chunk.js.map": "./static/js/6901.79047196.chunk.js.map",
|
||||
"2185.4db0ed3d.chunk.js.map": "./static/js/2185.4db0ed3d.chunk.js.map",
|
||||
"9968.e06e8995.chunk.js.map": "./static/js/9968.e06e8995.chunk.js.map",
|
||||
"7494.3579143d.chunk.js.map": "./static/js/7494.3579143d.chunk.js.map",
|
||||
"4738.9e3d5260.chunk.js.map": "./static/js/4738.9e3d5260.chunk.js.map",
|
||||
"9918.7eee2adc.chunk.js.map": "./static/js/9918.7eee2adc.chunk.js.map",
|
||||
"5702.fa73d842.chunk.js.map": "./static/js/5702.fa73d842.chunk.js.map",
|
||||
"2512.f29a3687.chunk.js.map": "./static/js/2512.f29a3687.chunk.js.map",
|
||||
"51.b4820ff4.chunk.js.map": "./static/js/51.b4820ff4.chunk.js.map",
|
||||
"312.71a85ec1.chunk.js.map": "./static/js/312.71a85ec1.chunk.js.map",
|
||||
"2032.d32831e1.chunk.js.map": "./static/js/2032.d32831e1.chunk.js.map",
|
||||
"4619.000c3900.chunk.js.map": "./static/js/4619.000c3900.chunk.js.map",
|
||||
"8990.d6246293.chunk.js.map": "./static/js/8990.d6246293.chunk.js.map",
|
||||
"8455.de8a804d.chunk.js.map": "./static/js/8455.de8a804d.chunk.js.map",
|
||||
"7233.3279acb8.chunk.css.map": "./static/css/7233.3279acb8.chunk.css.map",
|
||||
"7233.38b9bfcf.chunk.js.map": "./static/js/7233.38b9bfcf.chunk.js.map",
|
||||
"1604.8a9dcedd.chunk.js.map": "./static/js/1604.8a9dcedd.chunk.js.map",
|
||||
"9952.dc18fe46.chunk.js.map": "./static/js/9952.dc18fe46.chunk.js.map",
|
||||
"402.4bb1d687.chunk.js.map": "./static/js/402.4bb1d687.chunk.js.map",
|
||||
"1705.27697aac.chunk.js.map": "./static/js/1705.27697aac.chunk.js.map",
|
||||
"1581.e0b40512.chunk.js.map": "./static/js/1581.e0b40512.chunk.js.map",
|
||||
"455.12104f9c.chunk.js.map": "./static/js/455.12104f9c.chunk.js.map",
|
||||
"2921.f2282e66.chunk.js.map": "./static/js/2921.f2282e66.chunk.js.map",
|
||||
"889.7aba45d8.chunk.js.map": "./static/js/889.7aba45d8.chunk.js.map",
|
||||
"9088.e68839ae.chunk.js.map": "./static/js/9088.e68839ae.chunk.js.map",
|
||||
"247.5fb5050b.chunk.js.map": "./static/js/247.5fb5050b.chunk.js.map",
|
||||
"2763.a0e53c20.chunk.js.map": "./static/js/2763.a0e53c20.chunk.js.map",
|
||||
"3691.cec964f8.chunk.js.map": "./static/js/3691.cec964f8.chunk.js.map",
|
||||
"6481.c1e3d223.chunk.js.map": "./static/js/6481.c1e3d223.chunk.js.map",
|
||||
"1520.6ee7f5c9.chunk.js.map": "./static/js/1520.6ee7f5c9.chunk.js.map",
|
||||
"3682.3b92900e.chunk.js.map": "./static/js/3682.3b92900e.chunk.js.map",
|
||||
"1918.b61ed655.chunk.js.map": "./static/js/1918.b61ed655.chunk.js.map",
|
||||
"9683.1e217b9a.chunk.js.map": "./static/js/9683.1e217b9a.chunk.js.map",
|
||||
"808.1c5ccab3.chunk.js.map": "./static/js/808.1c5ccab3.chunk.js.map",
|
||||
"8060.72b9138c.chunk.js.map": "./static/js/8060.72b9138c.chunk.js.map",
|
||||
"6765.17759907.chunk.js.map": "./static/js/6765.17759907.chunk.js.map",
|
||||
"2338.f2e3b9d4.chunk.js.map": "./static/js/2338.f2e3b9d4.chunk.js.map",
|
||||
"4335.e73f294b.chunk.js.map": "./static/js/4335.e73f294b.chunk.js.map",
|
||||
"9315.94bc4162.chunk.js.map": "./static/js/9315.94bc4162.chunk.js.map",
|
||||
"842.94d22304.chunk.js.map": "./static/js/842.94d22304.chunk.js.map",
|
||||
"4061.c26d8978.chunk.js.map": "./static/js/4061.c26d8978.chunk.js.map",
|
||||
"3067.a79bb499.chunk.js.map": "./static/js/3067.a79bb499.chunk.js.map",
|
||||
"2637.be6faba9.chunk.js.map": "./static/js/2637.be6faba9.chunk.js.map",
|
||||
"5370.6d5cfeb1.chunk.css.map": "./static/css/5370.6d5cfeb1.chunk.css.map",
|
||||
"5370.bcc67c67.chunk.js.map": "./static/js/5370.bcc67c67.chunk.js.map",
|
||||
"701.3916b3b0.chunk.js.map": "./static/js/701.3916b3b0.chunk.js.map",
|
||||
"7821.30d84224.chunk.js.map": "./static/js/7821.30d84224.chunk.js.map",
|
||||
"284.6d5cfeb1.chunk.css.map": "./static/css/284.6d5cfeb1.chunk.css.map",
|
||||
"284.2272d607.chunk.js.map": "./static/js/284.2272d607.chunk.js.map",
|
||||
"8388.85d69c36.chunk.js.map": "./static/js/8388.85d69c36.chunk.js.map",
|
||||
"9781.6d5cfeb1.chunk.css.map": "./static/css/9781.6d5cfeb1.chunk.css.map",
|
||||
"9781.5138af65.chunk.js.map": "./static/js/9781.5138af65.chunk.js.map",
|
||||
"8936.6d5cfeb1.chunk.css.map": "./static/css/8936.6d5cfeb1.chunk.css.map",
|
||||
"8936.32db27d8.chunk.js.map": "./static/js/8936.32db27d8.chunk.js.map",
|
||||
"1195.6d5cfeb1.chunk.css.map": "./static/css/1195.6d5cfeb1.chunk.css.map",
|
||||
"1195.c88c104c.chunk.js.map": "./static/js/1195.c88c104c.chunk.js.map",
|
||||
"2766.a907ade6.chunk.js.map": "./static/js/2766.a907ade6.chunk.js.map",
|
||||
"8658.3e576725.chunk.js.map": "./static/js/8658.3e576725.chunk.js.map",
|
||||
"7614.c26e0388.chunk.js.map": "./static/js/7614.c26e0388.chunk.js.map",
|
||||
"1690.74411b75.chunk.js.map": "./static/js/1690.74411b75.chunk.js.map",
|
||||
"6491.cb84de50.chunk.js.map": "./static/js/6491.cb84de50.chunk.js.map",
|
||||
"4902.ca4d4b9b.chunk.js.map": "./static/js/4902.ca4d4b9b.chunk.js.map",
|
||||
"1432.0fd16e2a.chunk.js.map": "./static/js/1432.0fd16e2a.chunk.js.map",
|
||||
"9243.438cd458.chunk.js.map": "./static/js/9243.438cd458.chunk.js.map",
|
||||
"8360.09237eed.chunk.js.map": "./static/js/8360.09237eed.chunk.js.map",
|
||||
"6577.0dd0770b.chunk.js.map": "./static/js/6577.0dd0770b.chunk.js.map",
|
||||
"3875.1b1cdf95.chunk.js.map": "./static/js/3875.1b1cdf95.chunk.js.map",
|
||||
"3115.ea1636fa.chunk.js.map": "./static/js/3115.ea1636fa.chunk.js.map",
|
||||
"5708.f77982a5.chunk.js.map": "./static/js/5708.f77982a5.chunk.js.map",
|
||||
"977.f5285832.chunk.js.map": "./static/js/977.f5285832.chunk.js.map",
|
||||
"6686.4148281b.chunk.js.map": "./static/js/6686.4148281b.chunk.js.map",
|
||||
"5656.28a8d11c.chunk.js.map": "./static/js/5656.28a8d11c.chunk.js.map",
|
||||
"91.e520a97c.chunk.js.map": "./static/js/91.e520a97c.chunk.js.map",
|
||||
"9666.5da08ac7.chunk.js.map": "./static/js/9666.5da08ac7.chunk.js.map",
|
||||
"4414.bd064f0a.chunk.js.map": "./static/js/4414.bd064f0a.chunk.js.map",
|
||||
"8833.bffd8a72.chunk.js.map": "./static/js/8833.bffd8a72.chunk.js.map",
|
||||
"1516.77785cd8.chunk.js.map": "./static/js/1516.77785cd8.chunk.js.map",
|
||||
"483.6b4acaca.chunk.js.map": "./static/js/483.6b4acaca.chunk.js.map",
|
||||
"4114.7f28b8fd.chunk.js.map": "./static/js/4114.7f28b8fd.chunk.js.map",
|
||||
"6895.ede8e880.chunk.js.map": "./static/js/6895.ede8e880.chunk.js.map",
|
||||
"5465.8959d405.chunk.js.map": "./static/js/5465.8959d405.chunk.js.map",
|
||||
"1155.6d5cfeb1.chunk.css.map": "./static/css/1155.6d5cfeb1.chunk.css.map",
|
||||
"1155.77ab901b.chunk.js.map": "./static/js/1155.77ab901b.chunk.js.map",
|
||||
"3956.d190ab9d.chunk.js.map": "./static/js/3956.d190ab9d.chunk.js.map",
|
||||
"9221.9f74a390.chunk.js.map": "./static/js/9221.9f74a390.chunk.js.map",
|
||||
"8896.b42caa61.chunk.js.map": "./static/js/8896.b42caa61.chunk.js.map",
|
||||
"9134.c6c3f8d9.chunk.js.map": "./static/js/9134.c6c3f8d9.chunk.js.map",
|
||||
"5223.d053b523.chunk.js.map": "./static/js/5223.d053b523.chunk.js.map",
|
||||
"5661.53057d05.chunk.js.map": "./static/js/5661.53057d05.chunk.js.map",
|
||||
"6493.e56bf22e.chunk.js.map": "./static/js/6493.e56bf22e.chunk.js.map",
|
||||
"3034.81b1b236.chunk.js.map": "./static/js/3034.81b1b236.chunk.js.map",
|
||||
"8925.6d5cfeb1.chunk.css.map": "./static/css/8925.6d5cfeb1.chunk.css.map",
|
||||
"8925.804545ac.chunk.js.map": "./static/js/8925.804545ac.chunk.js.map",
|
||||
"711.aec34a54.chunk.js.map": "./static/js/711.aec34a54.chunk.js.map",
|
||||
"6901.67563dd6.chunk.js.map": "./static/js/6901.67563dd6.chunk.js.map",
|
||||
"2185.8253dd66.chunk.js.map": "./static/js/2185.8253dd66.chunk.js.map",
|
||||
"9968.392f895d.chunk.js.map": "./static/js/9968.392f895d.chunk.js.map",
|
||||
"5998.6de29890.chunk.js.map": "./static/js/5998.6de29890.chunk.js.map",
|
||||
"119.7142376a.chunk.js.map": "./static/js/119.7142376a.chunk.js.map",
|
||||
"9918.f2916d91.chunk.js.map": "./static/js/9918.f2916d91.chunk.js.map",
|
||||
"2733.4eb78cde.chunk.js.map": "./static/js/2733.4eb78cde.chunk.js.map",
|
||||
"9002.9ee60291.chunk.js.map": "./static/js/9002.9ee60291.chunk.js.map",
|
||||
"51.3b7ac0bb.chunk.js.map": "./static/js/51.3b7ac0bb.chunk.js.map",
|
||||
"312.36182e3e.chunk.js.map": "./static/js/312.36182e3e.chunk.js.map",
|
||||
"2032.54dedb37.chunk.js.map": "./static/js/2032.54dedb37.chunk.js.map",
|
||||
"4619.c77024f7.chunk.js.map": "./static/js/4619.c77024f7.chunk.js.map",
|
||||
"8990.a79c2757.chunk.js.map": "./static/js/8990.a79c2757.chunk.js.map",
|
||||
"8455.28c47271.chunk.js.map": "./static/js/8455.28c47271.chunk.js.map",
|
||||
"7233.6d5cfeb1.chunk.css.map": "./static/css/7233.6d5cfeb1.chunk.css.map",
|
||||
"7233.27f033e9.chunk.js.map": "./static/js/7233.27f033e9.chunk.js.map",
|
||||
"1609.f0705551.chunk.js.map": "./static/js/1609.f0705551.chunk.js.map",
|
||||
"9952.b6aabb99.chunk.js.map": "./static/js/9952.b6aabb99.chunk.js.map",
|
||||
"402.7e563de3.chunk.js.map": "./static/js/402.7e563de3.chunk.js.map",
|
||||
"1705.bf628870.chunk.js.map": "./static/js/1705.bf628870.chunk.js.map",
|
||||
"1581.fe2c6b2c.chunk.js.map": "./static/js/1581.fe2c6b2c.chunk.js.map",
|
||||
"455.10c22444.chunk.js.map": "./static/js/455.10c22444.chunk.js.map",
|
||||
"2921.9f05320f.chunk.js.map": "./static/js/2921.9f05320f.chunk.js.map",
|
||||
"889.954fb6a3.chunk.js.map": "./static/js/889.954fb6a3.chunk.js.map",
|
||||
"9088.f4b08dc0.chunk.js.map": "./static/js/9088.f4b08dc0.chunk.js.map",
|
||||
"6639.5cc622e2.chunk.js.map": "./static/js/6639.5cc622e2.chunk.js.map",
|
||||
"2763.94aac2f6.chunk.js.map": "./static/js/2763.94aac2f6.chunk.js.map",
|
||||
"5994.630a8a7b.chunk.js.map": "./static/js/5994.630a8a7b.chunk.js.map",
|
||||
"7391.a8c89f77.chunk.js.map": "./static/js/7391.a8c89f77.chunk.js.map",
|
||||
"2303.32f1acf1.chunk.js.map": "./static/js/2303.32f1acf1.chunk.js.map",
|
||||
"3691.8a4fe1f5.chunk.js.map": "./static/js/3691.8a4fe1f5.chunk.js.map",
|
||||
"6481.13d4264b.chunk.js.map": "./static/js/6481.13d4264b.chunk.js.map",
|
||||
"1520.af5d5afd.chunk.js.map": "./static/js/1520.af5d5afd.chunk.js.map",
|
||||
"3682.4537dc89.chunk.js.map": "./static/js/3682.4537dc89.chunk.js.map",
|
||||
"1918.5ab76596.chunk.js.map": "./static/js/1918.5ab76596.chunk.js.map",
|
||||
"7847.ac3e4228.chunk.js.map": "./static/js/7847.ac3e4228.chunk.js.map",
|
||||
"6195.f15db24b.chunk.js.map": "./static/js/6195.f15db24b.chunk.js.map",
|
||||
"1427.470a9bca.chunk.js.map": "./static/js/1427.470a9bca.chunk.js.map",
|
||||
"3801.e125737d.chunk.js.map": "./static/js/3801.e125737d.chunk.js.map",
|
||||
"601.6e9a5467.chunk.js.map": "./static/js/601.6e9a5467.chunk.js.map",
|
||||
"9414.12ffc9ac.chunk.js.map": "./static/js/9414.12ffc9ac.chunk.js.map",
|
||||
"9414.038100c0.chunk.js.map": "./static/js/9414.038100c0.chunk.js.map",
|
||||
"8173.8aba7982.chunk.js.map": "./static/js/8173.8aba7982.chunk.js.map",
|
||||
"5415.dbae49d4.chunk.js.map": "./static/js/5415.dbae49d4.chunk.js.map",
|
||||
"8265.a7f4cd6e.chunk.js.map": "./static/js/8265.a7f4cd6e.chunk.js.map",
|
||||
"5284.fba0c13b.chunk.js.map": "./static/js/5284.fba0c13b.chunk.js.map",
|
||||
"6315.3238dd2e.chunk.js.map": "./static/js/6315.3238dd2e.chunk.js.map",
|
||||
"8766.5d6104c6.chunk.js.map": "./static/js/8766.5d6104c6.chunk.js.map",
|
||||
"6503.67a16b55.chunk.js.map": "./static/js/6503.67a16b55.chunk.js.map",
|
||||
"6169.e0c2c6d2.chunk.js.map": "./static/js/6169.e0c2c6d2.chunk.js.map",
|
||||
"8968.3926ed4d.chunk.js.map": "./static/js/8968.3926ed4d.chunk.js.map",
|
||||
"7986.faa0de32.chunk.js.map": "./static/js/7986.faa0de32.chunk.js.map",
|
||||
"1803.10c741c8.chunk.js.map": "./static/js/1803.10c741c8.chunk.js.map",
|
||||
"6662.34c547c9.chunk.js.map": "./static/js/6662.34c547c9.chunk.js.map",
|
||||
"91.66e7e796.chunk.js.map": "./static/js/91.66e7e796.chunk.js.map",
|
||||
"6037.7ed8da7f.chunk.js.map": "./static/js/6037.7ed8da7f.chunk.js.map"
|
||||
"375.5aee7265.chunk.js.map": "./static/js/375.5aee7265.chunk.js.map",
|
||||
"5284.4c8d46d3.chunk.js.map": "./static/js/5284.4c8d46d3.chunk.js.map",
|
||||
"9425.3248dd51.chunk.js.map": "./static/js/9425.3248dd51.chunk.js.map",
|
||||
"4102.543f88a5.chunk.js.map": "./static/js/4102.543f88a5.chunk.js.map",
|
||||
"6903.ea5c8ae0.chunk.js.map": "./static/js/6903.ea5c8ae0.chunk.js.map",
|
||||
"5871.10749c09.chunk.js.map": "./static/js/5871.10749c09.chunk.js.map",
|
||||
"2960.ff0e1ef0.chunk.js.map": "./static/js/2960.ff0e1ef0.chunk.js.map",
|
||||
"9135.9f49ec5b.chunk.js.map": "./static/js/9135.9f49ec5b.chunk.js.map",
|
||||
"357.b43cdd5a.chunk.js.map": "./static/js/357.b43cdd5a.chunk.js.map",
|
||||
"3141.674df617.chunk.js.map": "./static/js/3141.674df617.chunk.js.map",
|
||||
"1388.babd16fa.chunk.js.map": "./static/js/1388.babd16fa.chunk.js.map",
|
||||
"4251.d89d9645.chunk.js.map": "./static/js/4251.d89d9645.chunk.js.map",
|
||||
"24.604f9040.chunk.js.map": "./static/js/24.604f9040.chunk.js.map",
|
||||
"222.7f3906bd.chunk.js.map": "./static/js/222.7f3906bd.chunk.js.map",
|
||||
"7521.66cdcc44.chunk.js.map": "./static/js/7521.66cdcc44.chunk.js.map",
|
||||
"2422.53d27798.chunk.js.map": "./static/js/2422.53d27798.chunk.js.map",
|
||||
"9302.9404e216.chunk.js.map": "./static/js/9302.9404e216.chunk.js.map",
|
||||
"221.45a05e5d.chunk.js.map": "./static/js/221.45a05e5d.chunk.js.map",
|
||||
"5292.9f745b3f.chunk.js.map": "./static/js/5292.9f745b3f.chunk.js.map",
|
||||
"2358.4c8b0e1c.chunk.js.map": "./static/js/2358.4c8b0e1c.chunk.js.map",
|
||||
"2983.3ffd4ad8.chunk.js.map": "./static/js/2983.3ffd4ad8.chunk.js.map",
|
||||
"4169.aeebcd8e.chunk.js.map": "./static/js/4169.aeebcd8e.chunk.js.map"
|
||||
},
|
||||
"entrypoints": [
|
||||
"static/css/main.57e739f5.css",
|
||||
"static/js/main.46564223.js"
|
||||
"static/css/main.7f39beab.css",
|
||||
"static/js/main.7d87c452.js"
|
||||
]
|
||||
}
|
||||
@@ -1 +1 @@
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"/><base href="/"/><meta content="width=device-width,initial-scale=1" name="viewport"/><meta content="#081C42" media="(prefers-color-scheme: light)" name="theme-color"/><meta content="#081C42" media="(prefers-color-scheme: dark)" name="theme-color"/><meta content="MinIO Console" name="description"/><meta name="minio-license" content="apgl"/><link href="./styles/root-styles.css" rel="stylesheet"/><link href="./apple-icon-180x180.png" rel="apple-touch-icon" sizes="180x180"/><link href="./favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/><link href="./favicon-96x96.png" rel="icon" sizes="96x96" type="image/png"/><link href="./favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/><link href="./manifest.json" rel="manifest"/><link color="#3a4e54" href="./safari-pinned-tab.svg" rel="mask-icon"/><title>MinIO Console</title><script defer="defer" src="./static/js/main.46564223.js"></script><link href="./static/css/main.57e739f5.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"><div id="preload"><img src="./images/background.svg"/> <img src="./images/background-wave-orig2.svg"/></div><div id="loader-block"><img src="./Loader.svg"/></div></div></body></html>
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"/><base href="/"/><meta content="width=device-width,initial-scale=1" name="viewport"/><meta content="#081C42" media="(prefers-color-scheme: light)" name="theme-color"/><meta content="#081C42" media="(prefers-color-scheme: dark)" name="theme-color"/><meta content="MinIO Console" name="description"/><meta name="minio-license" content="apgl"/><link href="./styles/root-styles.css" rel="stylesheet"/><link href="./apple-icon-180x180.png" rel="apple-touch-icon" sizes="180x180"/><link href="./favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/><link href="./favicon-96x96.png" rel="icon" sizes="96x96" type="image/png"/><link href="./favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/><link href="./manifest.json" rel="manifest"/><link color="#3a4e54" href="./safari-pinned-tab.svg" rel="mask-icon"/><title>MinIO Console</title><script defer="defer" src="./static/js/main.7d87c452.js"></script><link href="./static/css/main.7f39beab.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"><div id="preload"><img src="./images/background.svg"/> <img src="./images/background-wave-orig2.svg"/></div><div id="loader-block"><img src="./Loader.svg"/></div></div></body></html>
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/css/7233.6d5cfeb1.chunk.css
Normal file
2
portal-ui/build/static/css/7233.6d5cfeb1.chunk.css
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/css/8925.6d5cfeb1.chunk.css
Normal file
2
portal-ui/build/static/css/8925.6d5cfeb1.chunk.css
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/css/8925.6d5cfeb1.chunk.css.map
Normal file
1
portal-ui/build/static/css/8925.6d5cfeb1.chunk.css.map
Normal file
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/css/8936.6d5cfeb1.chunk.css
Normal file
2
portal-ui/build/static/css/8936.6d5cfeb1.chunk.css
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/css/8936.6d5cfeb1.chunk.css.map
Normal file
1
portal-ui/build/static/css/8936.6d5cfeb1.chunk.css.map
Normal file
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/css/9781.6d5cfeb1.chunk.css
Normal file
2
portal-ui/build/static/css/9781.6d5cfeb1.chunk.css
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/css/9781.6d5cfeb1.chunk.css.map
Normal file
1
portal-ui/build/static/css/9781.6d5cfeb1.chunk.css.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/css/main.7f39beab.css
Normal file
2
portal-ui/build/static/css/main.7f39beab.css
Normal file
@@ -0,0 +1,2 @@
|
||||
.ReactVirtualized__Table__headerRow{font-weight:700;text-transform:uppercase}.ReactVirtualized__Table__headerRow,.ReactVirtualized__Table__row{align-items:center;display:flex;flex-direction:row}.ReactVirtualized__Table__headerTruncatedText{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ReactVirtualized__Table__headerColumn,.ReactVirtualized__Table__rowColumn{margin-right:10px;min-width:0}.ReactVirtualized__Table__rowColumn{text-overflow:ellipsis;white-space:nowrap}.ReactVirtualized__Table__headerColumn:first-of-type,.ReactVirtualized__Table__rowColumn:first-of-type{margin-left:10px}.ReactVirtualized__Table__sortableHeaderColumn{cursor:pointer}.ReactVirtualized__Table__sortableHeaderIconContainer{align-items:center;display:flex}.ReactVirtualized__Table__sortableHeaderIcon{fill:currentColor;flex:0 0 24px;height:1em;width:1em}.react-grid-layout{position:relative;transition:height .2s ease}.react-grid-item{transition:all .2s ease;transition-property:left,top}.react-grid-item img{pointer-events:none;-webkit-user-select:none;user-select:none}.react-grid-item.cssTransforms{transition-property:transform}.react-grid-item.resizing{will-change:width,height;z-index:1}.react-grid-item.react-draggable-dragging{transition:none;will-change:transform;z-index:3}.react-grid-item.dropping{visibility:hidden}.react-grid-item.react-grid-placeholder{background:red;opacity:.2;transition-duration:.1s;-webkit-user-select:none;-o-user-select:none;user-select:none;z-index:2}.react-grid-item>.react-resizable-handle{height:20px;position:absolute;width:20px}.react-grid-item>.react-resizable-handle:after{border-bottom:2px solid rgba(0,0,0,.4);border-right:2px solid rgba(0,0,0,.4);bottom:3px;content:"";height:5px;position:absolute;right:3px;width:5px}.react-resizable-hide>.react-resizable-handle{display:none}.react-grid-item>.react-resizable-handle.react-resizable-handle-sw{bottom:0;cursor:sw-resize;left:0;transform:rotate(90deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-se{bottom:0;cursor:se-resize;right:0}.react-grid-item>.react-resizable-handle.react-resizable-handle-nw{cursor:nw-resize;left:0;top:0;transform:rotate(180deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-ne{cursor:ne-resize;right:0;top:0;transform:rotate(270deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-e,.react-grid-item>.react-resizable-handle.react-resizable-handle-w{cursor:ew-resize;margin-top:-10px;top:50%}.react-grid-item>.react-resizable-handle.react-resizable-handle-w{left:0;transform:rotate(135deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-e{right:0;transform:rotate(315deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-n,.react-grid-item>.react-resizable-handle.react-resizable-handle-s{cursor:ns-resize;left:50%;margin-left:-10px}.react-grid-item>.react-resizable-handle.react-resizable-handle-n{top:0;transform:rotate(225deg)}.react-grid-item>.react-resizable-handle.react-resizable-handle-s{bottom:0;transform:rotate(45deg)}.react-resizable{position:relative}.react-resizable-handle{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgd2lkdGg9IjYiIGhlaWdodD0iNiI+PHBhdGggZD0iTTYgNkgwVjQuMmg0LjJWMEg2djZaIiBvcGFjaXR5PSIuMzAyIi8+PC9zdmc+);background-origin:content-box;background-position:100% 100%;background-repeat:no-repeat;box-sizing:border-box;height:20px;padding:0 3px 3px 0;position:absolute;width:20px}.react-resizable-handle-sw{bottom:0;cursor:sw-resize;left:0;transform:rotate(90deg)}.react-resizable-handle-se{bottom:0;cursor:se-resize;right:0}.react-resizable-handle-nw{cursor:nw-resize;left:0;top:0;transform:rotate(180deg)}.react-resizable-handle-ne{cursor:ne-resize;right:0;top:0;transform:rotate(270deg)}.react-resizable-handle-e,.react-resizable-handle-w{cursor:ew-resize;margin-top:-10px;top:50%}.react-resizable-handle-w{left:0;transform:rotate(135deg)}.react-resizable-handle-e{right:0;transform:rotate(315deg)}.react-resizable-handle-n,.react-resizable-handle-s{cursor:ns-resize;left:50%;margin-left:-10px}.react-resizable-handle-n{top:0;transform:rotate(225deg)}.react-resizable-handle-s{bottom:0;transform:rotate(45deg)}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:Inter,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}.removeArrows input::-webkit-inner-spin-button,.removeArrows input::-webkit-outer-spin-button,input.removeArrows::-webkit-inner-spin-button,input.removeArrows::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.removeArrows input[type=number],input.removeArrows[type=number]{-moz-appearance:textfield}
|
||||
/*# sourceMappingURL=main.7f39beab.css.map*/
|
||||
1
portal-ui/build/static/css/main.7f39beab.css.map
Normal file
1
portal-ui/build/static/css/main.7f39beab.css.map
Normal file
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1155.77ab901b.chunk.js
Normal file
2
portal-ui/build/static/js/1155.77ab901b.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/1155.77ab901b.chunk.js.map
Normal file
1
portal-ui/build/static/js/1155.77ab901b.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/119.7142376a.chunk.js
Normal file
2
portal-ui/build/static/js/119.7142376a.chunk.js
Normal file
@@ -0,0 +1,2 @@
|
||||
(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[119],{84738:function(e,t,n){"use strict";n.r(t);var i=n(1413),c=n(29439),r=n(72791),a=n(78687),o=n(57689),s=n(35527),u=n(18073),l=n(43896),d=n(19847),f=n(92983),p=n(81207),v=n(56087),h=n(60680),S=n(38442),m=n(45248),I=n(87995),x=n(9859),Z=n(81551),_=n(80184);function b(e){return{id:"simple-tab-".concat(e),"aria-controls":"simple-tabpanel-".concat(e)}}t.default=function(){var e=(0,Z.TL)(),t=(0,o.s0)(),n=(0,o.UO)(),F=(0,a.v9)(x.HQ),A=(0,r.useState)(0),L=(0,c.Z)(A,2),j=L[0],E=L[1],N=(0,r.useState)(!0),C=(0,c.Z)(N,2),T=C[0],D=C[1],U=(0,r.useState)([]),g=(0,c.Z)(U,2),y=g[0],k=g[1],M=(0,r.useState)(!0),P=(0,c.Z)(M,2),O=P[0],R=P[1],G=(0,r.useState)([]),w=(0,c.Z)(G,2),z=w[0],B=w[1],H=n.bucketName||"",K=(0,S.F)(H,[v.Ft.ADMIN_LIST_USER_POLICIES]),V=(0,S.F)(H,[v.Ft.ADMIN_GET_POLICY,v.Ft.ADMIN_LIST_USERS,v.Ft.ADMIN_LIST_GROUPS],!0),Y=(0,S.F)(v.C3,[v.Ft.ADMIN_GET_USER]),Q=(0,S.F)(v.C3,[v.Ft.ADMIN_GET_POLICY,v.Ft.ADMIN_LIST_USERS,v.Ft.ADMIN_LIST_GROUPS]);(0,r.useEffect)((function(){F&&(R(!0),D(!0))}),[F,R,D]);var q=[{type:"view",disableButtonFunction:function(){return!Q},onClick:function(e){t("".concat(v.gA.POLICIES,"/").concat((0,m.LL)(e.name)))}}],J=[{type:"view",disableButtonFunction:function(){return!Y},onClick:function(e){t("".concat(v.gA.USERS,"/").concat((0,m.LL)(e)))}}];return(0,r.useEffect)((function(){O&&(V?p.Z.invoke("GET","/api/v1/bucket-users/".concat(H)).then((function(e){B(e),R(!1)})).catch((function(t){e((0,I.Ih)(t)),R(!1)})):R(!1))}),[O,e,H,V]),(0,r.useEffect)((function(){T&&(K?p.Z.invoke("GET","/api/v1/bucket-policy/".concat(H)).then((function(e){k(e.policies),D(!1)})).catch((function(t){e((0,I.Ih)(t)),D(!1)})):D(!1))}),[T,e,H,K]),(0,_.jsxs)(r.Fragment,{children:[(0,_.jsx)(h.Z,{children:"Access Audit"}),(0,_.jsxs)(u.Z,{value:j,onChange:function(e,t){E(t)},indicatorColor:"primary",textColor:"primary","aria-label":"cluster-tabs",variant:"scrollable",scrollButtons:"auto",children:[K&&(0,_.jsx)(l.Z,(0,i.Z)({label:"Policies"},b(0))),V&&(0,_.jsx)(l.Z,(0,i.Z)({label:"Users"},b(1)))]}),(0,_.jsxs)(s.Z,{children:[(0,_.jsx)(d.x,{index:0,value:j,children:(0,_.jsx)(S.s,{scopes:[v.Ft.ADMIN_LIST_USER_POLICIES],resource:H,errorProps:{disabled:!0},children:(0,_.jsx)(f.Z,{noBackground:!0,itemActions:q,columns:[{label:"Name",elementKey:"name"}],isLoading:T,records:y,entityName:"Policies",idField:"name"})})}),(0,_.jsx)(d.x,{index:1,value:j,children:(0,_.jsx)(S.s,{scopes:[v.Ft.ADMIN_GET_POLICY,v.Ft.ADMIN_LIST_USERS,v.Ft.ADMIN_LIST_GROUPS],resource:H,matchAll:!0,errorProps:{disabled:!0},children:(0,_.jsx)(f.Z,{noBackground:!0,itemActions:J,columns:[{label:"User",elementKey:"accessKey"}],isLoading:O,records:z,entityName:"Users",idField:"accessKey"})})})]})]})}},60680:function(e,t,n){"use strict";n(72791);var i=n(11135),c=n(25787),r=n(80184);t.Z=(0,c.Z)((function(e){return(0,i.Z)({root:{padding:0,margin:0,fontSize:".9rem"}})}))((function(e){var t=e.classes,n=e.children;return(0,r.jsx)("h1",{className:t.root,children:n})}))},19847:function(e,t,n){"use strict";n.d(t,{x:function(){return s}});var i=n(1413),c=n(45987),r=n(72791),a=n(80184),o=["children","value","index"],s=function(e){var t=e.children,n=e.value,s=e.index,u=(0,c.Z)(e,o);return(0,a.jsx)("div",(0,i.Z)((0,i.Z)({role:"tabpanel",hidden:n!==s,id:"simple-tabpanel-".concat(s),"aria-labelledby":"simple-tab-".concat(s),style:{marginTop:"5px"}},u),{},{children:n===s&&(0,a.jsx)(r.Fragment,{children:t})}))}},26759:function(e,t,n){"use strict";var i=n(64836);t.Z=void 0;var c=i(n(45649)),r=n(80184),a=(0,c.default)((0,r.jsx)("path",{d:"m7 10 5 5 5-5z"}),"ArrowDropDown");t.Z=a},70366:function(e,t,n){"use strict";var i=n(64836);t.Z=void 0;var c=i(n(45649)),r=n(80184),a=(0,c.default)((0,r.jsx)("path",{d:"m7 14 5-5 5 5z"}),"ArrowDropUp");t.Z=a},97911:function(e,t,n){"use strict";var i=n(64836);t.Z=void 0;var c=i(n(45649)),r=n(80184),a=(0,c.default)((0,r.jsx)("path",{d:"M14.67 5v14H9.33V5h5.34zm1 14H21V5h-5.33v14zm-7.34 0V5H3v14h5.33z"}),"ViewColumn");t.Z=a},26769:function(e,t,n){var i=n(39066),c=n(93629),r=n(43141);e.exports=function(e){return"string"==typeof e||!c(e)&&r(e)&&"[object String]"==i(e)}}}]);
|
||||
//# sourceMappingURL=119.7142376a.chunk.js.map
|
||||
1
portal-ui/build/static/js/119.7142376a.chunk.js.map
Normal file
1
portal-ui/build/static/js/119.7142376a.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1195.c88c104c.chunk.js
Normal file
2
portal-ui/build/static/js/1195.c88c104c.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/1195.c88c104c.chunk.js.map
Normal file
1
portal-ui/build/static/js/1195.c88c104c.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
@@ -1,2 +0,0 @@
|
||||
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[1329],{51270:function(e,n,t){var i=t(29439),r=(t(72791),t(51691)),o=t(9505),c=t(23508),s=t(75952),a=t(87995),l=t(81551),u=t(80184);n.Z=function(e){var n=e.closeDeleteModalAndRefresh,t=e.deleteOpen,d=e.idp,f=e.idpType,p=(0,l.TL)(),x=(0,o.Z)((function(e){n(!0),p((0,a.cN)(!0===e.restart))}),(function(e){return p((0,a.Ih)(e))})),C=(0,i.Z)(x,2),m=C[0],h=C[1];if(!d)return null;var D="_"===d?"Default":d;return(0,u.jsx)(c.Z,{title:"Delete ".concat(D),confirmText:"Delete",isOpen:t,titleIcon:(0,u.jsx)(s.NvT,{}),isLoading:m,onConfirm:function(){h("DELETE","/api/v1/idp/".concat(f,"/").concat(d))},onClose:function(){return n(!1)},confirmButtonProps:{disabled:m},confirmationContent:(0,u.jsxs)(r.Z,{children:["Are you sure you want to delete IDP ",(0,u.jsx)("b",{children:D})," ","configuration? ",(0,u.jsx)("br",{})]})})}},31329:function(e,n,t){t.r(n),t.d(n,{default:function(){return _}});var i=t(72791),r=t(74165),o=t(15861),c=t(29439),s=t(1413),a=t(11135),l=t(25787),u=t(81551),d=t(57689),f=t(56087),p=t(38442),x=t(81207),C=t(87995),m=t(74794),h=t(23814),D=t(61889),Z=t(27454),j=t(75952),b=t(92983),y=t(51270),F=t(47974),I=t(80184),N=(0,l.Z)((function(e){return(0,a.Z)((0,s.Z)({},h.Bz))}))((function(e){var n=e.classes,t=e.idpType,s=(0,u.TL)(),a=(0,d.s0)(),l=(0,i.useState)(!1),h=(0,c.Z)(l,2),N=h[0],_=h[1],A=(0,i.useState)(""),T=(0,c.Z)(A,2),v=T[0],P=T[1],g=(0,i.useState)(!1),k=(0,c.Z)(g,2),E=k[0],O=k[1],M=(0,i.useState)([]),G=(0,c.Z)(M,2),U=G[0],w=G[1],L=(0,p.F)(f.C3,[f.Ft.ADMIN_CONFIG_UPDATE]),B=(0,p.F)(f.C3,[f.Ft.ADMIN_CONFIG_UPDATE]),K=(0,p.F)(f.C3,[f.Ft.ADMIN_CONFIG_UPDATE]);(0,i.useEffect)((function(){S()}),[]),(0,i.useEffect)((function(){E&&(K?x.Z.invoke("GET","/api/v1/idp/".concat(t)).then((function(e){O(!1),w(e.results.map((function(e){return e.name="_"===e.name?"Default":e.name,e.enabled=!0===e.enabled?"Enabled":"Disabled",e})))})).catch((function(e){O(!1),s((0,C.Ih)(e))})):O(!1))}),[E,O,w,s,K,t]);var S=function(){O(!0)},z=function(){var e=(0,o.Z)((0,r.Z)().mark((function e(n){return(0,r.Z)().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:_(!1),n&&S();case 2:case"end":return e.stop()}}),e)})));return function(n){return e.apply(this,arguments)}}(),R=[{type:"view",onClick:function(e){var n="Default"===e.name?"_":e.name;a("/identity/idp/".concat(t,"/configurations/").concat(n))},disableButtonFunction:function(){return!B}},{type:"delete",onClick:function(e){_(!0),P(e="Default"===e?"_":e)},sendOnlyId:!0,disableButtonFunction:function(e){return!L||"Default"===e}}];return(0,I.jsxs)(i.Fragment,{children:[N&&(0,I.jsx)(y.Z,{deleteOpen:N,idp:v,idpType:t,closeDeleteModalAndRefresh:z}),(0,I.jsx)(F.Z,{label:"".concat(t.toUpperCase()," Configurations")}),(0,I.jsx)(m.Z,{className:n.pageContainer,children:(0,I.jsxs)(D.ZP,{container:!0,spacing:1,children:[(0,I.jsxs)(D.ZP,{item:!0,xs:12,display:"flex",alignItems:"center",justifyContent:"flex-end",sx:{"& button":{marginLeft:"8px"}},children:[(0,I.jsx)(p.s,{scopes:[f.Ft.ADMIN_CONFIG_UPDATE],resource:f.C3,errorProps:{disabled:!0},children:(0,I.jsx)(Z.Z,{tooltip:"Refresh",children:(0,I.jsx)(j.zxk,{id:"refresh-keys",variant:"regular",icon:(0,I.jsx)(j.DuK,{}),onClick:function(){return O(!0)}})})}),(0,I.jsx)(p.s,{scopes:[f.Ft.ADMIN_CONFIG_UPDATE],resource:f.C3,errorProps:{disabled:!0},children:(0,I.jsx)(Z.Z,{tooltip:"Create ".concat(t," configuration"),children:(0,I.jsx)(j.zxk,{id:"create-idp",label:"Create Configuration",variant:"callAction",icon:(0,I.jsx)(j.dtP,{}),onClick:function(){return a("/identity/idp/".concat(t,"/configurations/add-idp"))}})})})]}),(0,I.jsx)(D.ZP,{item:!0,xs:12,className:n.tableBlock,children:(0,I.jsx)(p.s,{scopes:[f.Ft.ADMIN_CONFIG_UPDATE],resource:f.C3,errorProps:{disabled:!0},children:(0,I.jsx)(b.Z,{itemActions:R,columns:[{label:"Name",elementKey:"name"},{label:"Type",elementKey:"type"},{label:"Enabled",elementKey:"enabled"}],isLoading:E,records:U,entityName:"Keys",idField:"name"})})})]})})]})})),_=function(){return(0,I.jsx)(N,{idpType:"openid"})}}}]);
|
||||
//# sourceMappingURL=1329.98d80e22.chunk.js.map
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1388.babd16fa.chunk.js
Normal file
2
portal-ui/build/static/js/1388.babd16fa.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/1388.babd16fa.chunk.js.map
Normal file
1
portal-ui/build/static/js/1388.babd16fa.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1427.470a9bca.chunk.js
Normal file
2
portal-ui/build/static/js/1427.470a9bca.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/1427.470a9bca.chunk.js.map
Normal file
1
portal-ui/build/static/js/1427.470a9bca.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1432.0fd16e2a.chunk.js
Normal file
2
portal-ui/build/static/js/1432.0fd16e2a.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/1432.0fd16e2a.chunk.js.map
Normal file
1
portal-ui/build/static/js/1432.0fd16e2a.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1516.77785cd8.chunk.js
Normal file
2
portal-ui/build/static/js/1516.77785cd8.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/1516.77785cd8.chunk.js.map
Normal file
1
portal-ui/build/static/js/1516.77785cd8.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1520.af5d5afd.chunk.js
Normal file
2
portal-ui/build/static/js/1520.af5d5afd.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/1520.af5d5afd.chunk.js.map
Normal file
1
portal-ui/build/static/js/1520.af5d5afd.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1581.fe2c6b2c.chunk.js
Normal file
2
portal-ui/build/static/js/1581.fe2c6b2c.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/1581.fe2c6b2c.chunk.js.map
Normal file
1
portal-ui/build/static/js/1581.fe2c6b2c.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1609.f0705551.chunk.js
Normal file
2
portal-ui/build/static/js/1609.f0705551.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/1609.f0705551.chunk.js.map
Normal file
1
portal-ui/build/static/js/1609.f0705551.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,2 +0,0 @@
|
||||
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[1705],{71705:function(e,n,t){t.r(n);var l=t(29439),s=t(72791),o=t(9505),i=t(64554),a=t(56087),c=t(38442),u=t(26181),r=t.n(u),d=t(81918),h=t(29823),f=t(42419),p=t(75578),v=t(75952),T=t(87995),x=t(81551),Z=t(80184),_=(0,p.Z)(s.lazy((function(){return t.e(247).then(t.bind(t,40247))}))),j=(0,p.Z)(s.lazy((function(){return t.e(2763).then(t.bind(t,22763))})));n.default=function(e){var n=e.bucketName,t=(0,x.TL)(),u=(0,s.useState)(null),p=(0,l.Z)(u,2),m=p[0],S=p[1],b=(0,s.useState)(!1),k=(0,l.Z)(b,2),C=k[0],G=k[1],g=(0,s.useState)([]),A=(0,l.Z)(g,2),N=A[0],y=A[1],I=(0,s.useState)(["",""]),U=(0,l.Z)(I,2),E=U[0],F=U[1],O=(0,s.useState)(!1),P=(0,l.Z)(O,2),w=P[0],z=P[1],B=(0,o.Z)((function(e){var n,t;null!=e&&null!=(null===e||void 0===e?void 0:e.details)&&"tags"in(null===e||void 0===e?void 0:e.details)&&(S(null===e||void 0===e||null===(n=e.details)||void 0===n?void 0:n.tags),y(Object.keys(null===e||void 0===e||null===(t=e.details)||void 0===t?void 0:t.tags)))}),(function(e){t((0,T.Ih)(e))})),K=(0,l.Z)(B,2),D=K[0],H=K[1],L=function(){H("GET","/api/v1/buckets/".concat(n))};return(0,s.useEffect)((function(){L()}),[n]),(0,Z.jsxs)(i.Z,{children:[D?(0,Z.jsx)(v.aNw,{style:{width:16,height:16}}):null,(0,Z.jsx)(c.s,{scopes:[a.Ft.S3_GET_BUCKET_TAGGING,a.Ft.S3_GET_ACTIONS],resource:n,children:(0,Z.jsxs)(i.Z,{sx:{display:"flex",flexFlow:"column"},children:[(0,Z.jsx)(i.Z,{children:N&&N.map((function(e,t){var l=r()(m,"".concat(e),"");return""!==l?(0,Z.jsx)(c.s,{scopes:[a.Ft.S3_PUT_BUCKET_TAGGING,a.Ft.S3_PUT_ACTIONS],resource:n,matchAll:!0,errorProps:{deleteIcon:null,onDelete:null},children:(0,Z.jsx)(d.Z,{style:{textTransform:"none",marginRight:"5px"},size:"small",label:"".concat(e," : ").concat(l),color:"primary",deleteIcon:(0,Z.jsx)(h.Z,{}),onDelete:function(){!function(e,n){F([e,n]),z(!0)}(e,l)}})},"chip-".concat(t)):null}))}),(0,Z.jsx)(c.s,{scopes:[a.Ft.S3_PUT_BUCKET_TAGGING,a.Ft.S3_PUT_ACTIONS],resource:n,errorProps:{disabled:!0,onClick:null},children:(0,Z.jsx)(d.Z,{style:{maxWidth:80,marginTop:"10px"},icon:(0,Z.jsx)(f.Z,{}),clickable:!0,size:"small",label:"Add tag",color:"primary",variant:"outlined",onClick:function(){G(!0)}})})]})}),C&&(0,Z.jsx)(_,{modalOpen:C,currentTags:m,bucketName:n,onCloseAndUpdate:function(e){G(!1),e&&L()}}),w&&(0,Z.jsx)(j,{deleteOpen:w,currentTags:m,bucketName:n,onCloseAndUpdate:function(e){z(!1),e&&L()},selectedTag:E})]})}},42419:function(e,n,t){var l=t(64836);n.Z=void 0;var s=l(t(45649)),o=t(80184),i=(0,s.default)((0,o.jsx)("path",{d:"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"}),"Add");n.Z=i}}]);
|
||||
//# sourceMappingURL=1705.27697aac.chunk.js.map
|
||||
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1705.bf628870.chunk.js
Normal file
2
portal-ui/build/static/js/1705.bf628870.chunk.js
Normal file
@@ -0,0 +1,2 @@
|
||||
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[1705],{71705:function(e,n,t){t.r(n);var l=t(29439),o=t(72791),s=t(9505),a=t(64554),i=t(56087),c=t(38442),u=t(26181),r=t.n(u),d=t(81918),v=t(29823),f=t(42419),h=t(75578),p=t(29945),x=t(87995),T=t(81551),Z=t(80184),_=(0,h.Z)(o.lazy((function(){return Promise.all([t.e(5994),t.e(7391),t.e(6639)]).then(t.bind(t,40247))}))),j=(0,h.Z)(o.lazy((function(){return t.e(2763).then(t.bind(t,22763))})));n.default=function(e){var n=e.bucketName,t=(0,T.TL)(),u=(0,o.useState)(null),h=(0,l.Z)(u,2),m=h[0],S=h[1],b=(0,o.useState)(!1),C=(0,l.Z)(b,2),k=C[0],G=C[1],g=(0,o.useState)([]),A=(0,l.Z)(g,2),N=A[0],y=A[1],I=(0,o.useState)(["",""]),U=(0,l.Z)(I,2),E=U[0],F=U[1],P=(0,o.useState)(!1),z=(0,l.Z)(P,2),O=z[0],w=z[1],B=(0,s.Z)((function(e){var n,t;null!=e&&null!=(null===e||void 0===e?void 0:e.details)&&"tags"in(null===e||void 0===e?void 0:e.details)&&(S(null===e||void 0===e||null===(n=e.details)||void 0===n?void 0:n.tags),y(Object.keys(null===e||void 0===e||null===(t=e.details)||void 0===t?void 0:t.tags)))}),(function(e){t((0,x.Ih)(e))})),K=(0,l.Z)(B,2),D=K[0],M=K[1],H=function(){M("GET","/api/v1/buckets/".concat(n))};return(0,o.useEffect)((function(){H()}),[n]),(0,Z.jsxs)(a.Z,{children:[D?(0,Z.jsx)(p.aNw,{style:{width:16,height:16}}):null,(0,Z.jsx)(c.s,{scopes:[i.Ft.S3_GET_BUCKET_TAGGING,i.Ft.S3_GET_ACTIONS],resource:n,children:(0,Z.jsxs)(a.Z,{sx:{display:"flex",flexFlow:"column"},children:[(0,Z.jsx)(a.Z,{children:N&&N.map((function(e,t){var l=r()(m,"".concat(e),"");return""!==l?(0,Z.jsx)(c.s,{scopes:[i.Ft.S3_PUT_BUCKET_TAGGING,i.Ft.S3_PUT_ACTIONS],resource:n,matchAll:!0,errorProps:{deleteIcon:null,onDelete:null},children:(0,Z.jsx)(d.Z,{style:{textTransform:"none",marginRight:"5px"},size:"small",label:"".concat(e," : ").concat(l),color:"primary",deleteIcon:(0,Z.jsx)(v.Z,{}),onDelete:function(){!function(e,n){F([e,n]),w(!0)}(e,l)}})},"chip-".concat(t)):null}))}),(0,Z.jsx)(c.s,{scopes:[i.Ft.S3_PUT_BUCKET_TAGGING,i.Ft.S3_PUT_ACTIONS],resource:n,errorProps:{disabled:!0,onClick:null},children:(0,Z.jsx)(d.Z,{style:{maxWidth:80,marginTop:"10px"},icon:(0,Z.jsx)(f.Z,{}),clickable:!0,size:"small",label:"Add tag",color:"primary",variant:"outlined",onClick:function(){G(!0)}})})]})}),k&&(0,Z.jsx)(_,{modalOpen:k,currentTags:m,bucketName:n,onCloseAndUpdate:function(e){G(!1),e&&H()}}),O&&(0,Z.jsx)(j,{deleteOpen:O,currentTags:m,bucketName:n,onCloseAndUpdate:function(e){w(!1),e&&H()},selectedTag:E})]})}},42419:function(e,n,t){var l=t(64836);n.Z=void 0;var o=l(t(45649)),s=t(80184),a=(0,o.default)((0,s.jsx)("path",{d:"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"}),"Add");n.Z=a},29823:function(e,n,t){var l=t(64836);n.Z=void 0;var o=l(t(45649)),s=t(80184),a=(0,o.default)((0,s.jsx)("path",{d:"M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}),"Close");n.Z=a}}]);
|
||||
//# sourceMappingURL=1705.bf628870.chunk.js.map
|
||||
1
portal-ui/build/static/js/1705.bf628870.chunk.js.map
Normal file
1
portal-ui/build/static/js/1705.bf628870.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1829.929d5c39.chunk.js
Normal file
2
portal-ui/build/static/js/1829.929d5c39.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/1829.929d5c39.chunk.js.map
Normal file
1
portal-ui/build/static/js/1829.929d5c39.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/1918.5ab76596.chunk.js
Normal file
2
portal-ui/build/static/js/1918.5ab76596.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/1918.5ab76596.chunk.js.map
Normal file
1
portal-ui/build/static/js/1918.5ab76596.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
portal-ui/build/static/js/193.235dd13b.chunk.js
Normal file
2
portal-ui/build/static/js/193.235dd13b.chunk.js
Normal file
File diff suppressed because one or more lines are too long
1
portal-ui/build/static/js/193.235dd13b.chunk.js.map
Normal file
1
portal-ui/build/static/js/193.235dd13b.chunk.js.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,2 +0,0 @@
|
||||
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[2185],{62185:function(e,t,n){n.r(t);var r=n(29439),a=n(1413),o=n(72791),i=n(57689),l=n(75952),s=n(56028),c=n(61889),u=n(21435),d=n(11135),f=n(23814),h=n(78687),m=n(45248),x=n(81551),p=n(87995),j=n(72455),v=n(80184),b=(0,j.Z)((function(e){return(0,d.Z)((0,a.Z)((0,a.Z)({},f.ID),f.DF))})),w=(0,h.$j)((function(e){return{simplePath:e.objectBrowser.simplePath}}));t.default=w((function(e){var t=e.modalOpen,n=(e.folderName,e.bucketName),a=e.onClose,d=e.simplePath,f=(0,x.TL)(),j=(0,i.s0)(),w=b(),Z=(0,o.useState)(""),P=(0,r.Z)(Z,2),C=P[0],g=P[1],k=(0,o.useState)(!1),F=(0,r.Z)(k,2),N=F[0],y=F[1],E=(0,o.useState)(n),S=(0,r.Z)(E,2),z=S[0],B=S[1],I=(0,h.v9)((function(e){return e.objectBrowser.records}));(0,o.useEffect)((function(){if(d){var e="".concat(n).concat(n.endsWith("/")||d.startsWith("/")?"":"/").concat(d);B(e)}}),[d,n]);var L=function(){var e="/";d&&(e=d.endsWith("/")?d:"".concat(d,"/"));if(-1===I.findIndex((function(t){return t.name===e+C}))){var t=C.split("/").filter((function(e){return""!==e.trim()})).join("/"),r="/browser/".concat(n,"/").concat((0,m.LL)("".concat(e).concat(t,"/")));j(r),a()}else f((0,p.zb)({errorMessage:"Folder cannot have the same name as an existing file",detailedError:""}))};(0,o.useEffect)((function(){var e=!0;0===C.trim().length&&(e=!1),y(e)}),[C]);return(0,v.jsx)(o.Fragment,{children:(0,v.jsx)(s.Z,{modalOpen:t,title:"Choose or create a new path",onClose:a,titleIcon:(0,v.jsx)(l.Z9m,{}),children:(0,v.jsxs)(c.ZP,{container:!0,children:[(0,v.jsxs)(c.ZP,{item:!0,xs:12,className:w.formFieldRow,children:[(0,v.jsx)("strong",{children:"Current Path:"})," ",(0,v.jsx)("br",{}),(0,v.jsx)("div",{style:{textOverflow:"ellipsis",whiteSpace:"nowrap",overflow:"hidden",fontSize:14,textAlign:"left"},dir:"rtl",children:z})]}),(0,v.jsx)(c.ZP,{item:!0,xs:12,className:w.formFieldRow,children:(0,v.jsx)(u.Z,{value:C,label:"New Folder Path",id:"folderPath",name:"folderPath",placeholder:"Enter the new Folder Path",onChange:function(e){g(e.target.value)},onKeyPress:function(e){"Enter"===e.code&&""!==C&&L()},required:!0})}),(0,v.jsxs)(c.ZP,{item:!0,xs:12,className:w.modalButtonBar,children:[(0,v.jsx)(l.zxk,{id:"clear",type:"button",color:"primary",variant:"regular",onClick:function(){g("")},label:"Clear"}),(0,v.jsx)(l.zxk,{id:"create",type:"submit",variant:"callAction",disabled:!N,onClick:L,label:"Create"})]})]})})})}))}}]);
|
||||
//# sourceMappingURL=2185.4db0ed3d.chunk.js.map
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user