mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-07 02:46:55 +08:00
add reset username
This commit is contained in:
45
.yarnclean
45
.yarnclean
@@ -1,45 +0,0 @@
|
|||||||
# test directories
|
|
||||||
__tests__
|
|
||||||
test
|
|
||||||
tests
|
|
||||||
powered-test
|
|
||||||
|
|
||||||
# asset directories
|
|
||||||
docs
|
|
||||||
doc
|
|
||||||
website
|
|
||||||
images
|
|
||||||
assets
|
|
||||||
|
|
||||||
# examples
|
|
||||||
example
|
|
||||||
examples
|
|
||||||
|
|
||||||
# code coverage directories
|
|
||||||
coverage
|
|
||||||
.nyc_output
|
|
||||||
|
|
||||||
# build scripts
|
|
||||||
Makefile
|
|
||||||
Gulpfile.js
|
|
||||||
Gruntfile.js
|
|
||||||
|
|
||||||
# configs
|
|
||||||
appveyor.yml
|
|
||||||
circle.yml
|
|
||||||
codeship-services.yml
|
|
||||||
codeship-steps.yml
|
|
||||||
wercker.yml
|
|
||||||
.tern-project
|
|
||||||
.gitattributes
|
|
||||||
.editorconfig
|
|
||||||
.*ignore
|
|
||||||
.eslintrc
|
|
||||||
.jshintrc
|
|
||||||
.flowconfig
|
|
||||||
.documentup.json
|
|
||||||
.yarn-metadata.json
|
|
||||||
.travis.yml
|
|
||||||
|
|
||||||
# misc
|
|
||||||
*.md
|
|
||||||
@@ -1,3 +1 @@
|
|||||||
nodeLinker: node-modules
|
nodeLinker: node-modules
|
||||||
|
|
||||||
yarnPath: .yarn/releases/yarn-4.0.2.cjs
|
|
||||||
|
|||||||
@@ -41,7 +41,6 @@
|
|||||||
"worker-timers": "^7.0.80"
|
"worker-timers": "^7.0.80"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/eslint-parser": "^7.23.3",
|
|
||||||
"@typescript-eslint/parser": "^6.15.0",
|
"@typescript-eslint/parser": "^6.15.0",
|
||||||
"@vicons/ionicons5": "^0.12.0",
|
"@vicons/ionicons5": "^0.12.0",
|
||||||
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
||||||
|
|||||||
@@ -29,7 +29,6 @@ const canSendEmailVerifyCode = ref(true)
|
|||||||
|
|
||||||
const newName = ref('')
|
const newName = ref('')
|
||||||
|
|
||||||
const oldPassword = ref('')
|
|
||||||
const newPassword = ref('')
|
const newPassword = ref('')
|
||||||
const newPassword2 = ref('')
|
const newPassword2 = ref('')
|
||||||
const biliCode = ref('')
|
const biliCode = ref('')
|
||||||
@@ -115,7 +114,8 @@ async function resetName() {
|
|||||||
message.error('新用户名与旧用户名一致')
|
message.error('新用户名与旧用户名一致')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
await QueryGetAPI(ACCOUNT_API_URL + 'verify/reset-name', { name: newName.value })
|
isLoading.value = true
|
||||||
|
await QueryGetAPI(ACCOUNT_API_URL + 'change-name', { name: newName.value })
|
||||||
.then(async (data) => {
|
.then(async (data) => {
|
||||||
if (data.code == 200) {
|
if (data.code == 200) {
|
||||||
message.success('用户名已修改')
|
message.success('用户名已修改')
|
||||||
@@ -129,6 +129,9 @@ async function resetName() {
|
|||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
message.error('发生错误')
|
message.error('发生错误')
|
||||||
})
|
})
|
||||||
|
.finally(() => {
|
||||||
|
isLoading.value = false
|
||||||
|
})
|
||||||
}
|
}
|
||||||
async function BindBili() {
|
async function BindBili() {
|
||||||
if (!biliCode.value) {
|
if (!biliCode.value) {
|
||||||
@@ -262,6 +265,7 @@ async function ChangeBili() {
|
|||||||
<NDivider />
|
<NDivider />
|
||||||
<NSpace justify="center">
|
<NSpace justify="center">
|
||||||
<NButton type="warning" @click="resetPasswordModalVisiable = true"> 修改密码 </NButton>
|
<NButton type="warning" @click="resetPasswordModalVisiable = true"> 修改密码 </NButton>
|
||||||
|
<NButton type="warning" @click="resetNameModalVisiable = true"> 修改用户名 </NButton>
|
||||||
<NPopconfirm @positive-click="logout">
|
<NPopconfirm @positive-click="logout">
|
||||||
<template #trigger>
|
<template #trigger>
|
||||||
<NButton type="error"> 登出 </NButton>
|
<NButton type="error"> 登出 </NButton>
|
||||||
@@ -301,10 +305,10 @@ async function ChangeBili() {
|
|||||||
</NModal>
|
</NModal>
|
||||||
<NModal v-model:show="resetNameModalVisiable" preset="card" title="修改用户名" style="width: 400px; max-width: 90%">
|
<NModal v-model:show="resetNameModalVisiable" preset="card" title="修改用户名" style="width: 400px; max-width: 90%">
|
||||||
<NSpace vertical>
|
<NSpace vertical>
|
||||||
<NInput v-model:value="newName" type="password" placeholder="新用户名" />
|
<NInput v-model:value="newName" placeholder="新用户名" />
|
||||||
</NSpace>
|
</NSpace>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<NButton @click="resetName" type="warning"> 确定修改 </NButton>
|
<NButton @click="resetName" type="warning" :loading="isLoading"> 确定修改 </NButton>
|
||||||
</template>
|
</template>
|
||||||
</NModal>
|
</NModal>
|
||||||
<NModal v-model:show="bindBiliCodeModalVisiable" preset="card" title="绑定/更新身份码" style="width: 400px; max-width: 90%">
|
<NModal v-model:show="bindBiliCodeModalVisiable" preset="card" title="绑定/更新身份码" style="width: 400px; max-width: 90%">
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"useDefineForClassFields": true,
|
"useDefineForClassFields": true,
|
||||||
"sourceMap": true,
|
"sourceMap": false,
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"types": ["node"],
|
"types": ["node"],
|
||||||
"paths": {
|
"paths": {
|
||||||
|
|||||||
390
yarn.lock
390
yarn.lock
@@ -69,20 +69,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@babel/eslint-parser@npm:^7.23.3":
|
|
||||||
version: 7.23.3
|
|
||||||
resolution: "@babel/eslint-parser@npm:7.23.3"
|
|
||||||
dependencies:
|
|
||||||
"@nicolo-ribaudo/eslint-scope-5-internals": "npm:5.1.1-v1"
|
|
||||||
eslint-visitor-keys: "npm:^2.1.0"
|
|
||||||
semver: "npm:^6.3.1"
|
|
||||||
peerDependencies:
|
|
||||||
"@babel/core": ^7.11.0
|
|
||||||
eslint: ^7.5.0 || ^8.0.0
|
|
||||||
checksum: abb01d23acd80e983125cd72c547baaf7775bfca7a98fc57a2a95f2b70197a34c6bf861e255ab5c8740ace27c50a9966481503875fcc23b2636598740e4881f4
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@babel/generator@npm:^7.23.6":
|
"@babel/generator@npm:^7.23.6":
|
||||||
version: 7.23.6
|
version: 7.23.6
|
||||||
resolution: "@babel/generator@npm:7.23.6"
|
resolution: "@babel/generator@npm:7.23.6"
|
||||||
@@ -413,156 +399,163 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/android-arm64@npm:0.19.9":
|
"@esbuild/aix-ppc64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/android-arm64@npm:0.19.9"
|
resolution: "@esbuild/aix-ppc64@npm:0.19.10"
|
||||||
|
conditions: os=aix & cpu=ppc64
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@esbuild/android-arm64@npm:0.19.10":
|
||||||
|
version: 0.19.10
|
||||||
|
resolution: "@esbuild/android-arm64@npm:0.19.10"
|
||||||
conditions: os=android & cpu=arm64
|
conditions: os=android & cpu=arm64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/android-arm@npm:0.19.9":
|
"@esbuild/android-arm@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/android-arm@npm:0.19.9"
|
resolution: "@esbuild/android-arm@npm:0.19.10"
|
||||||
conditions: os=android & cpu=arm
|
conditions: os=android & cpu=arm
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/android-x64@npm:0.19.9":
|
"@esbuild/android-x64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/android-x64@npm:0.19.9"
|
resolution: "@esbuild/android-x64@npm:0.19.10"
|
||||||
conditions: os=android & cpu=x64
|
conditions: os=android & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/darwin-arm64@npm:0.19.9":
|
"@esbuild/darwin-arm64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/darwin-arm64@npm:0.19.9"
|
resolution: "@esbuild/darwin-arm64@npm:0.19.10"
|
||||||
conditions: os=darwin & cpu=arm64
|
conditions: os=darwin & cpu=arm64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/darwin-x64@npm:0.19.9":
|
"@esbuild/darwin-x64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/darwin-x64@npm:0.19.9"
|
resolution: "@esbuild/darwin-x64@npm:0.19.10"
|
||||||
conditions: os=darwin & cpu=x64
|
conditions: os=darwin & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/freebsd-arm64@npm:0.19.9":
|
"@esbuild/freebsd-arm64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/freebsd-arm64@npm:0.19.9"
|
resolution: "@esbuild/freebsd-arm64@npm:0.19.10"
|
||||||
conditions: os=freebsd & cpu=arm64
|
conditions: os=freebsd & cpu=arm64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/freebsd-x64@npm:0.19.9":
|
"@esbuild/freebsd-x64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/freebsd-x64@npm:0.19.9"
|
resolution: "@esbuild/freebsd-x64@npm:0.19.10"
|
||||||
conditions: os=freebsd & cpu=x64
|
conditions: os=freebsd & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/linux-arm64@npm:0.19.9":
|
"@esbuild/linux-arm64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/linux-arm64@npm:0.19.9"
|
resolution: "@esbuild/linux-arm64@npm:0.19.10"
|
||||||
conditions: os=linux & cpu=arm64
|
conditions: os=linux & cpu=arm64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/linux-arm@npm:0.19.9":
|
"@esbuild/linux-arm@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/linux-arm@npm:0.19.9"
|
resolution: "@esbuild/linux-arm@npm:0.19.10"
|
||||||
conditions: os=linux & cpu=arm
|
conditions: os=linux & cpu=arm
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/linux-ia32@npm:0.19.9":
|
"@esbuild/linux-ia32@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/linux-ia32@npm:0.19.9"
|
resolution: "@esbuild/linux-ia32@npm:0.19.10"
|
||||||
conditions: os=linux & cpu=ia32
|
conditions: os=linux & cpu=ia32
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/linux-loong64@npm:0.19.9":
|
"@esbuild/linux-loong64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/linux-loong64@npm:0.19.9"
|
resolution: "@esbuild/linux-loong64@npm:0.19.10"
|
||||||
conditions: os=linux & cpu=loong64
|
conditions: os=linux & cpu=loong64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/linux-mips64el@npm:0.19.9":
|
"@esbuild/linux-mips64el@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/linux-mips64el@npm:0.19.9"
|
resolution: "@esbuild/linux-mips64el@npm:0.19.10"
|
||||||
conditions: os=linux & cpu=mips64el
|
conditions: os=linux & cpu=mips64el
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/linux-ppc64@npm:0.19.9":
|
"@esbuild/linux-ppc64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/linux-ppc64@npm:0.19.9"
|
resolution: "@esbuild/linux-ppc64@npm:0.19.10"
|
||||||
conditions: os=linux & cpu=ppc64
|
conditions: os=linux & cpu=ppc64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/linux-riscv64@npm:0.19.9":
|
"@esbuild/linux-riscv64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/linux-riscv64@npm:0.19.9"
|
resolution: "@esbuild/linux-riscv64@npm:0.19.10"
|
||||||
conditions: os=linux & cpu=riscv64
|
conditions: os=linux & cpu=riscv64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/linux-s390x@npm:0.19.9":
|
"@esbuild/linux-s390x@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/linux-s390x@npm:0.19.9"
|
resolution: "@esbuild/linux-s390x@npm:0.19.10"
|
||||||
conditions: os=linux & cpu=s390x
|
conditions: os=linux & cpu=s390x
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/linux-x64@npm:0.19.9":
|
"@esbuild/linux-x64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/linux-x64@npm:0.19.9"
|
resolution: "@esbuild/linux-x64@npm:0.19.10"
|
||||||
conditions: os=linux & cpu=x64
|
conditions: os=linux & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/netbsd-x64@npm:0.19.9":
|
"@esbuild/netbsd-x64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/netbsd-x64@npm:0.19.9"
|
resolution: "@esbuild/netbsd-x64@npm:0.19.10"
|
||||||
conditions: os=netbsd & cpu=x64
|
conditions: os=netbsd & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/openbsd-x64@npm:0.19.9":
|
"@esbuild/openbsd-x64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/openbsd-x64@npm:0.19.9"
|
resolution: "@esbuild/openbsd-x64@npm:0.19.10"
|
||||||
conditions: os=openbsd & cpu=x64
|
conditions: os=openbsd & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/sunos-x64@npm:0.19.9":
|
"@esbuild/sunos-x64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/sunos-x64@npm:0.19.9"
|
resolution: "@esbuild/sunos-x64@npm:0.19.10"
|
||||||
conditions: os=sunos & cpu=x64
|
conditions: os=sunos & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/win32-arm64@npm:0.19.9":
|
"@esbuild/win32-arm64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/win32-arm64@npm:0.19.9"
|
resolution: "@esbuild/win32-arm64@npm:0.19.10"
|
||||||
conditions: os=win32 & cpu=arm64
|
conditions: os=win32 & cpu=arm64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/win32-ia32@npm:0.19.9":
|
"@esbuild/win32-ia32@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/win32-ia32@npm:0.19.9"
|
resolution: "@esbuild/win32-ia32@npm:0.19.10"
|
||||||
conditions: os=win32 & cpu=ia32
|
conditions: os=win32 & cpu=ia32
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@esbuild/win32-x64@npm:0.19.9":
|
"@esbuild/win32-x64@npm:0.19.10":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "@esbuild/win32-x64@npm:0.19.9"
|
resolution: "@esbuild/win32-x64@npm:0.19.10"
|
||||||
conditions: os=win32 & cpu=x64
|
conditions: os=win32 & cpu=x64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
@@ -697,15 +690,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1":
|
|
||||||
version: 5.1.1-v1
|
|
||||||
resolution: "@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1"
|
|
||||||
dependencies:
|
|
||||||
eslint-scope: "npm:5.1.1"
|
|
||||||
checksum: 75dda3e623b8ad7369ca22552d6beee337a814b2d0e8a32d23edd13fcb65c8082b32c5d86e436f3860dd7ade30d91d5db55d4ef9a08fb5a976c718ecc0d88a74
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@nodelib/fs.scandir@npm:2.1.5":
|
"@nodelib/fs.scandir@npm:2.1.5":
|
||||||
version: 2.1.5
|
version: 2.1.5
|
||||||
resolution: "@nodelib/fs.scandir@npm:2.1.5"
|
resolution: "@nodelib/fs.scandir@npm:2.1.5"
|
||||||
@@ -934,7 +918,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@typescript-eslint/eslint-plugin@npm:^6.15.0":
|
"@typescript-eslint/eslint-plugin@npm:^6.15.0, @typescript-eslint/eslint-plugin@npm:^6.7.0":
|
||||||
version: 6.15.0
|
version: 6.15.0
|
||||||
resolution: "@typescript-eslint/eslint-plugin@npm:6.15.0"
|
resolution: "@typescript-eslint/eslint-plugin@npm:6.15.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -959,32 +943,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@typescript-eslint/eslint-plugin@npm:^6.7.0":
|
"@typescript-eslint/parser@npm:^6.15.0, @typescript-eslint/parser@npm:^6.7.0":
|
||||||
version: 6.14.0
|
|
||||||
resolution: "@typescript-eslint/eslint-plugin@npm:6.14.0"
|
|
||||||
dependencies:
|
|
||||||
"@eslint-community/regexpp": "npm:^4.5.1"
|
|
||||||
"@typescript-eslint/scope-manager": "npm:6.14.0"
|
|
||||||
"@typescript-eslint/type-utils": "npm:6.14.0"
|
|
||||||
"@typescript-eslint/utils": "npm:6.14.0"
|
|
||||||
"@typescript-eslint/visitor-keys": "npm:6.14.0"
|
|
||||||
debug: "npm:^4.3.4"
|
|
||||||
graphemer: "npm:^1.4.0"
|
|
||||||
ignore: "npm:^5.2.4"
|
|
||||||
natural-compare: "npm:^1.4.0"
|
|
||||||
semver: "npm:^7.5.4"
|
|
||||||
ts-api-utils: "npm:^1.0.1"
|
|
||||||
peerDependencies:
|
|
||||||
"@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha
|
|
||||||
eslint: ^7.0.0 || ^8.0.0
|
|
||||||
peerDependenciesMeta:
|
|
||||||
typescript:
|
|
||||||
optional: true
|
|
||||||
checksum: 6360efb0e142ed91de5e9bddcd041f769feeedd256332733be08f7a74c8ae637cbfb78c6b85d747c73231bbb95cef95ed2d2854ab7d43aebfbedb3a191f447f1
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@typescript-eslint/parser@npm:^6.15.0":
|
|
||||||
version: 6.15.0
|
version: 6.15.0
|
||||||
resolution: "@typescript-eslint/parser@npm:6.15.0"
|
resolution: "@typescript-eslint/parser@npm:6.15.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -1002,34 +961,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@typescript-eslint/parser@npm:^6.7.0":
|
|
||||||
version: 6.14.0
|
|
||||||
resolution: "@typescript-eslint/parser@npm:6.14.0"
|
|
||||||
dependencies:
|
|
||||||
"@typescript-eslint/scope-manager": "npm:6.14.0"
|
|
||||||
"@typescript-eslint/types": "npm:6.14.0"
|
|
||||||
"@typescript-eslint/typescript-estree": "npm:6.14.0"
|
|
||||||
"@typescript-eslint/visitor-keys": "npm:6.14.0"
|
|
||||||
debug: "npm:^4.3.4"
|
|
||||||
peerDependencies:
|
|
||||||
eslint: ^7.0.0 || ^8.0.0
|
|
||||||
peerDependenciesMeta:
|
|
||||||
typescript:
|
|
||||||
optional: true
|
|
||||||
checksum: 0344f7f640374e7e5a5b50e9c90fbd161611b3f455132e541ef9116eef7bd3acf364db64bd38d4b6b4fe148414494620c9df660f8ddce036019c38ae8e146585
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@typescript-eslint/scope-manager@npm:6.14.0":
|
|
||||||
version: 6.14.0
|
|
||||||
resolution: "@typescript-eslint/scope-manager@npm:6.14.0"
|
|
||||||
dependencies:
|
|
||||||
"@typescript-eslint/types": "npm:6.14.0"
|
|
||||||
"@typescript-eslint/visitor-keys": "npm:6.14.0"
|
|
||||||
checksum: 8c59a215af3d7d24d8d0b21c28a858263de471650829f288a941e0eb8af8a054798da5c7594b7f39370219718270c18464b5edb96f451457e5f080a33ba57c2c
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@typescript-eslint/scope-manager@npm:6.15.0":
|
"@typescript-eslint/scope-manager@npm:6.15.0":
|
||||||
version: 6.15.0
|
version: 6.15.0
|
||||||
resolution: "@typescript-eslint/scope-manager@npm:6.15.0"
|
resolution: "@typescript-eslint/scope-manager@npm:6.15.0"
|
||||||
@@ -1040,23 +971,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@typescript-eslint/type-utils@npm:6.14.0":
|
|
||||||
version: 6.14.0
|
|
||||||
resolution: "@typescript-eslint/type-utils@npm:6.14.0"
|
|
||||||
dependencies:
|
|
||||||
"@typescript-eslint/typescript-estree": "npm:6.14.0"
|
|
||||||
"@typescript-eslint/utils": "npm:6.14.0"
|
|
||||||
debug: "npm:^4.3.4"
|
|
||||||
ts-api-utils: "npm:^1.0.1"
|
|
||||||
peerDependencies:
|
|
||||||
eslint: ^7.0.0 || ^8.0.0
|
|
||||||
peerDependenciesMeta:
|
|
||||||
typescript:
|
|
||||||
optional: true
|
|
||||||
checksum: 836a6e84be5a245b07c76968c98e2f3bae064767dde720080fe8f33e226188510778dbca4199b7e42ef675ec3fd6d0ab522ec1c77d6e2a9b50e8e275fe7c72c9
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@typescript-eslint/type-utils@npm:6.15.0":
|
"@typescript-eslint/type-utils@npm:6.15.0":
|
||||||
version: 6.15.0
|
version: 6.15.0
|
||||||
resolution: "@typescript-eslint/type-utils@npm:6.15.0"
|
resolution: "@typescript-eslint/type-utils@npm:6.15.0"
|
||||||
@@ -1074,13 +988,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@typescript-eslint/types@npm:6.14.0":
|
|
||||||
version: 6.14.0
|
|
||||||
resolution: "@typescript-eslint/types@npm:6.14.0"
|
|
||||||
checksum: d59306a7a441982a4dcee7d775928fd5086aba9331f7a238f915723a0dc785df0e43af562a30a7c2f1b056a1e49fd64863a8d2450d31706193add0ade87334a4
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@typescript-eslint/types@npm:6.15.0":
|
"@typescript-eslint/types@npm:6.15.0":
|
||||||
version: 6.15.0
|
version: 6.15.0
|
||||||
resolution: "@typescript-eslint/types@npm:6.15.0"
|
resolution: "@typescript-eslint/types@npm:6.15.0"
|
||||||
@@ -1088,24 +995,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@typescript-eslint/typescript-estree@npm:6.14.0":
|
|
||||||
version: 6.14.0
|
|
||||||
resolution: "@typescript-eslint/typescript-estree@npm:6.14.0"
|
|
||||||
dependencies:
|
|
||||||
"@typescript-eslint/types": "npm:6.14.0"
|
|
||||||
"@typescript-eslint/visitor-keys": "npm:6.14.0"
|
|
||||||
debug: "npm:^4.3.4"
|
|
||||||
globby: "npm:^11.1.0"
|
|
||||||
is-glob: "npm:^4.0.3"
|
|
||||||
semver: "npm:^7.5.4"
|
|
||||||
ts-api-utils: "npm:^1.0.1"
|
|
||||||
peerDependenciesMeta:
|
|
||||||
typescript:
|
|
||||||
optional: true
|
|
||||||
checksum: 767c3309987b8ad053a2403605a9bd7c4eb3283dece864a741a7531a1c28eea4d85acaa4613141b64e194f9f6c4cbc5bc762c9b9f3a67c6202aa8cbb18b180d2
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@typescript-eslint/typescript-estree@npm:6.15.0":
|
"@typescript-eslint/typescript-estree@npm:6.15.0":
|
||||||
version: 6.15.0
|
version: 6.15.0
|
||||||
resolution: "@typescript-eslint/typescript-estree@npm:6.15.0"
|
resolution: "@typescript-eslint/typescript-estree@npm:6.15.0"
|
||||||
@@ -1124,23 +1013,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@typescript-eslint/utils@npm:6.14.0":
|
|
||||||
version: 6.14.0
|
|
||||||
resolution: "@typescript-eslint/utils@npm:6.14.0"
|
|
||||||
dependencies:
|
|
||||||
"@eslint-community/eslint-utils": "npm:^4.4.0"
|
|
||||||
"@types/json-schema": "npm:^7.0.12"
|
|
||||||
"@types/semver": "npm:^7.5.0"
|
|
||||||
"@typescript-eslint/scope-manager": "npm:6.14.0"
|
|
||||||
"@typescript-eslint/types": "npm:6.14.0"
|
|
||||||
"@typescript-eslint/typescript-estree": "npm:6.14.0"
|
|
||||||
semver: "npm:^7.5.4"
|
|
||||||
peerDependencies:
|
|
||||||
eslint: ^7.0.0 || ^8.0.0
|
|
||||||
checksum: 72689b2897b89e1bd1c71c1c2ae436d0ccfbcfffabf3be4378de74ad8138b2ecdbeeda7c1720e2f1754569e773f2fc7216f704335e1e56c38c7601ee1d190aeb
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@typescript-eslint/utils@npm:6.15.0":
|
"@typescript-eslint/utils@npm:6.15.0":
|
||||||
version: 6.15.0
|
version: 6.15.0
|
||||||
resolution: "@typescript-eslint/utils@npm:6.15.0"
|
resolution: "@typescript-eslint/utils@npm:6.15.0"
|
||||||
@@ -1158,16 +1030,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@typescript-eslint/visitor-keys@npm:6.14.0":
|
|
||||||
version: 6.14.0
|
|
||||||
resolution: "@typescript-eslint/visitor-keys@npm:6.14.0"
|
|
||||||
dependencies:
|
|
||||||
"@typescript-eslint/types": "npm:6.14.0"
|
|
||||||
eslint-visitor-keys: "npm:^3.4.1"
|
|
||||||
checksum: 0e2363f9f1986ebdb41507c54a666fa1c336eb6beb383dc342a10844d3c42c89067b21c3f158851fa6f0825e1e451a5470b5454fde70a6fc33b4b0259462d954
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@typescript-eslint/visitor-keys@npm:6.15.0":
|
"@typescript-eslint/visitor-keys@npm:6.15.0":
|
||||||
version: 6.15.0
|
version: 6.15.0
|
||||||
resolution: "@typescript-eslint/visitor-keys@npm:6.15.0"
|
resolution: "@typescript-eslint/visitor-keys@npm:6.15.0"
|
||||||
@@ -1765,9 +1627,9 @@ __metadata:
|
|||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"caniuse-lite@npm:^1.0.30001565":
|
"caniuse-lite@npm:^1.0.30001565":
|
||||||
version: 1.0.30001570
|
version: 1.0.30001571
|
||||||
resolution: "caniuse-lite@npm:1.0.30001570"
|
resolution: "caniuse-lite@npm:1.0.30001571"
|
||||||
checksum: e47230d2016edea56e002fa462a5289f697b48dcfbf703fb01aecc6c98ad4ecaf945ab23c253cb7af056c2d05f266e4e4cbebf45132100e2c9367439cb95b95b
|
checksum: 632f476e39febbfb5dc91c236981f3d518dc0cf55c42cc2bba431a6b6f4cceae3f9cd74d26312f30e9de65a3cc92ccf80d964ba8de061e25f37b7f0518303dad
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -2155,9 +2017,9 @@ __metadata:
|
|||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"electron-to-chromium@npm:^1.4.601":
|
"electron-to-chromium@npm:^1.4.601":
|
||||||
version: 1.4.614
|
version: 1.4.616
|
||||||
resolution: "electron-to-chromium@npm:1.4.614"
|
resolution: "electron-to-chromium@npm:1.4.616"
|
||||||
checksum: 2cc4209c5f5794be069d74a4aa9b0849fba3570d06f981dbe41d626b0cc88cfbf8b9aae47b033e67370f477ce49168b4d4324c7c518ee28012e8430b65c5fe84
|
checksum: a02416f3293d28120d5132546a6aea614ebd2d820a684f41b1c20138331922ddc672c4a59bfc4b91bb5aee1ba608f6c10cd3f69c344cd434397e7f14a4c97348
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -2291,32 +2153,35 @@ __metadata:
|
|||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"esbuild@npm:^0.19.3":
|
"esbuild@npm:^0.19.3":
|
||||||
version: 0.19.9
|
version: 0.19.10
|
||||||
resolution: "esbuild@npm:0.19.9"
|
resolution: "esbuild@npm:0.19.10"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@esbuild/android-arm": "npm:0.19.9"
|
"@esbuild/aix-ppc64": "npm:0.19.10"
|
||||||
"@esbuild/android-arm64": "npm:0.19.9"
|
"@esbuild/android-arm": "npm:0.19.10"
|
||||||
"@esbuild/android-x64": "npm:0.19.9"
|
"@esbuild/android-arm64": "npm:0.19.10"
|
||||||
"@esbuild/darwin-arm64": "npm:0.19.9"
|
"@esbuild/android-x64": "npm:0.19.10"
|
||||||
"@esbuild/darwin-x64": "npm:0.19.9"
|
"@esbuild/darwin-arm64": "npm:0.19.10"
|
||||||
"@esbuild/freebsd-arm64": "npm:0.19.9"
|
"@esbuild/darwin-x64": "npm:0.19.10"
|
||||||
"@esbuild/freebsd-x64": "npm:0.19.9"
|
"@esbuild/freebsd-arm64": "npm:0.19.10"
|
||||||
"@esbuild/linux-arm": "npm:0.19.9"
|
"@esbuild/freebsd-x64": "npm:0.19.10"
|
||||||
"@esbuild/linux-arm64": "npm:0.19.9"
|
"@esbuild/linux-arm": "npm:0.19.10"
|
||||||
"@esbuild/linux-ia32": "npm:0.19.9"
|
"@esbuild/linux-arm64": "npm:0.19.10"
|
||||||
"@esbuild/linux-loong64": "npm:0.19.9"
|
"@esbuild/linux-ia32": "npm:0.19.10"
|
||||||
"@esbuild/linux-mips64el": "npm:0.19.9"
|
"@esbuild/linux-loong64": "npm:0.19.10"
|
||||||
"@esbuild/linux-ppc64": "npm:0.19.9"
|
"@esbuild/linux-mips64el": "npm:0.19.10"
|
||||||
"@esbuild/linux-riscv64": "npm:0.19.9"
|
"@esbuild/linux-ppc64": "npm:0.19.10"
|
||||||
"@esbuild/linux-s390x": "npm:0.19.9"
|
"@esbuild/linux-riscv64": "npm:0.19.10"
|
||||||
"@esbuild/linux-x64": "npm:0.19.9"
|
"@esbuild/linux-s390x": "npm:0.19.10"
|
||||||
"@esbuild/netbsd-x64": "npm:0.19.9"
|
"@esbuild/linux-x64": "npm:0.19.10"
|
||||||
"@esbuild/openbsd-x64": "npm:0.19.9"
|
"@esbuild/netbsd-x64": "npm:0.19.10"
|
||||||
"@esbuild/sunos-x64": "npm:0.19.9"
|
"@esbuild/openbsd-x64": "npm:0.19.10"
|
||||||
"@esbuild/win32-arm64": "npm:0.19.9"
|
"@esbuild/sunos-x64": "npm:0.19.10"
|
||||||
"@esbuild/win32-ia32": "npm:0.19.9"
|
"@esbuild/win32-arm64": "npm:0.19.10"
|
||||||
"@esbuild/win32-x64": "npm:0.19.9"
|
"@esbuild/win32-ia32": "npm:0.19.10"
|
||||||
|
"@esbuild/win32-x64": "npm:0.19.10"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
|
"@esbuild/aix-ppc64":
|
||||||
|
optional: true
|
||||||
"@esbuild/android-arm":
|
"@esbuild/android-arm":
|
||||||
optional: true
|
optional: true
|
||||||
"@esbuild/android-arm64":
|
"@esbuild/android-arm64":
|
||||||
@@ -2363,7 +2228,7 @@ __metadata:
|
|||||||
optional: true
|
optional: true
|
||||||
bin:
|
bin:
|
||||||
esbuild: bin/esbuild
|
esbuild: bin/esbuild
|
||||||
checksum: 85cf167596f52ec5cde47ec27013d49f04e3052e6b00cd4534095cd74a776955040b03b326d54a9588921dc631f76b97ebda76b52bb5152f3ef4a45cfba81dca
|
checksum: e2d9012e664f4c02add4c002548fda1d06434d5bdecbf1471c89c1b361e7f88f62ebf1187fae6940e5c58d60c3dd5b4c4972bbf2df95c30270bfcc77543b463e
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -2486,16 +2351,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"eslint-scope@npm:5.1.1":
|
|
||||||
version: 5.1.1
|
|
||||||
resolution: "eslint-scope@npm:5.1.1"
|
|
||||||
dependencies:
|
|
||||||
esrecurse: "npm:^4.3.0"
|
|
||||||
estraverse: "npm:^4.1.1"
|
|
||||||
checksum: d30ef9dc1c1cbdece34db1539a4933fe3f9b14e1ffb27ecc85987902ee663ad7c9473bbd49a9a03195a373741e62e2f807c4938992e019b511993d163450e70a
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"eslint-scope@npm:^7.1.1, eslint-scope@npm:^7.2.2":
|
"eslint-scope@npm:^7.1.1, eslint-scope@npm:^7.2.2":
|
||||||
version: 7.2.2
|
version: 7.2.2
|
||||||
resolution: "eslint-scope@npm:7.2.2"
|
resolution: "eslint-scope@npm:7.2.2"
|
||||||
@@ -2506,13 +2361,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"eslint-visitor-keys@npm:^2.1.0":
|
|
||||||
version: 2.1.0
|
|
||||||
resolution: "eslint-visitor-keys@npm:2.1.0"
|
|
||||||
checksum: 9f0e3a2db751d84067d15977ac4b4472efd6b303e369e6ff241a99feac04da758f46d5add022c33d06b53596038dbae4b4aceb27c7e68b8dfc1055b35e495787
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3":
|
"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3":
|
||||||
version: 3.4.3
|
version: 3.4.3
|
||||||
resolution: "eslint-visitor-keys@npm:3.4.3"
|
resolution: "eslint-visitor-keys@npm:3.4.3"
|
||||||
@@ -2597,13 +2445,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"estraverse@npm:^4.1.1":
|
|
||||||
version: 4.3.0
|
|
||||||
resolution: "estraverse@npm:4.3.0"
|
|
||||||
checksum: 9cb46463ef8a8a4905d3708a652d60122a0c20bb58dec7e0e12ab0e7235123d74214fc0141d743c381813e1b992767e2708194f6f6e0f9fd00c1b4e0887b8b6d
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0":
|
"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0":
|
||||||
version: 5.3.0
|
version: 5.3.0
|
||||||
resolution: "estraverse@npm:5.3.0"
|
resolution: "estraverse@npm:5.3.0"
|
||||||
@@ -2736,11 +2577,11 @@ __metadata:
|
|||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"fastq@npm:^1.6.0":
|
"fastq@npm:^1.6.0":
|
||||||
version: 1.15.0
|
version: 1.16.0
|
||||||
resolution: "fastq@npm:1.15.0"
|
resolution: "fastq@npm:1.16.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
reusify: "npm:^1.0.4"
|
reusify: "npm:^1.0.4"
|
||||||
checksum: 5ce4f83afa5f88c9379e67906b4d31bc7694a30826d6cc8d0f0473c966929017fda65c2174b0ec89f064ede6ace6c67f8a4fe04cef42119b6a55b0d465554c24
|
checksum: 38c1b49adba639af020727284a02af021acab764efd7f088bc31364e8a5b01ce9031eb6c5f7f304019b8267c3b7c236e79d6904884f50f94f83b1700b8a6619a
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -3988,11 +3829,11 @@ __metadata:
|
|||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"npm-run-path@npm:^5.1.0":
|
"npm-run-path@npm:^5.1.0":
|
||||||
version: 5.1.0
|
version: 5.2.0
|
||||||
resolution: "npm-run-path@npm:5.1.0"
|
resolution: "npm-run-path@npm:5.2.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
path-key: "npm:^4.0.0"
|
path-key: "npm:^4.0.0"
|
||||||
checksum: ff6d77514489f47fa1c3b1311d09cd4b6d09a874cc1866260f9dea12cbaabda0436ed7f8c2ee44d147bf99a3af29307c6f63b0f83d242b0b6b0ab25dff2629e3
|
checksum: 7963c1f98e42afebe9524a08b0881477ec145aab34f6018842a315422b25ad40e015bdee709b697571e5efda2ecfa2640ee917d92674e4de1166fa3532a211b1
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -5175,7 +5016,6 @@ __metadata:
|
|||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "vtsuru.live@workspace:."
|
resolution: "vtsuru.live@workspace:."
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/eslint-parser": "npm:^7.23.3"
|
|
||||||
"@types/node": "npm:^20.10.5"
|
"@types/node": "npm:^20.10.5"
|
||||||
"@typescript-eslint/eslint-plugin": "npm:^6.15.0"
|
"@typescript-eslint/eslint-plugin": "npm:^6.15.0"
|
||||||
"@typescript-eslint/parser": "npm:^6.15.0"
|
"@typescript-eslint/parser": "npm:^6.15.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user