Register managed user data using POST call from UI (to support user data content > 4096 bytes) (#8487)

This PR allows to register managed user data using POST call from UI (to support user data content > 4096 bytes).

Partially fixes #8415
This commit is contained in:
Suresh Kumar Anaparti 2024-01-10 12:06:12 +05:30 committed by GitHub
parent d6ac91f2df
commit 32f379270c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -211,7 +211,7 @@ export default {
params.params = userdataparams params.params = userdataparams
} }
api('registerUserData', params).then(json => { api('registerUserData', {}, 'POST', params).then(json => {
this.$message.success(this.$t('message.success.register.user.data') + ' ' + values.name) this.$message.success(this.$t('message.success.register.user.data') + ' ' + values.name)
}).catch(error => { }).catch(error => {
this.$notifyError(error) this.$notifyError(error)