Skip to content

Commit

Permalink
Merge branch 'master' into fix-5826
Browse files Browse the repository at this point in the history
  • Loading branch information
Aias00 authored Dec 17, 2024
2 parents 9effd61 + c2d9efb commit a426070
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,13 +218,12 @@ public ShenyuAdminResult syncPluginAll(@Valid @RequestBody final NamespaceSyncDT
/**
* sync plugin data.
*
* @param pluginId the plugin id
* @param namespaceId the namespace id
* @param id the id
* @return {@linkplain ShenyuAdminResult}
*/
@PutMapping("/syncPluginData")
public ShenyuAdminResult syncPluginData(@RequestParam("id") final String pluginId, @RequestParam("namespaceId") final String namespaceId) {
return ShenyuAdminResult.success(syncDataService.syncPluginData(namespaceId, pluginId) ? ShenyuResultMessage.SYNC_SUCCESS : ShenyuResultMessage.SYNC_FAIL);
public ShenyuAdminResult syncPluginData(@RequestParam("id") final String id) {
return ShenyuAdminResult.success(syncDataService.syncPluginData(id) ? ShenyuResultMessage.SYNC_SUCCESS : ShenyuResultMessage.SYNC_FAIL);
}

/**
Expand Down
1 change: 0 additions & 1 deletion shenyu-admin/src/main/resources/static/index.8bed7a5f.js

This file was deleted.

1 change: 1 addition & 0 deletions shenyu-admin/src/main/resources/static/index.c6b9f733.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion shenyu-admin/src/main/resources/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
<body>
<div id="httpPath" style="display: none" th:text="${domain}"></div>
<div id="root"></div>
<script type="text/javascript" src="index.8bed7a5f.js"></script></body>
<script type="text/javascript" src="index.c6b9f733.js"></script></body>

</html>

0 comments on commit a426070

Please sign in to comment.