zaunist commented on pull request #2267:
URL:
https://github.com/apache/apisix-dashboard/pull/2267#issuecomment-1002451629
During the development process, I found that the structure of
plugin_metadata in the plugin is uncertain, and the structure is similar to
this:
```
{
"skey": "val",
"ikey": 1
}
```
but if we use current storage(store.go) to GET、PUT、and DELETE
`plugin_metada`,it need be like this structure:
```
{
"plugin_metadata":{
"ikey":1,
"skey":"val"
}
}
```
If we don’t make a lot of changes to the current storage(store.go), it will
be difficult to support plugin_metadata in the dashboard, but the v3 version is
already planned. I don’t think it is necessary to spend more time on this
function. When designing the v3 version, add this Features plus will be more
suitable
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]