Skip to content

Commit

Permalink
fix release issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tuohai666 committed Jul 30, 2021
1 parent 646e554 commit 04fab08
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 54 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public ShenyuAdminResult detailDashboardUser(@PathVariable("id") final String id
@PostMapping("")
public ShenyuAdminResult createDashboardUser(@Valid @RequestBody final DashboardUserDTO dashboardUserDTO) {
String key = secretProperties.getKey();
String iv = secretProperties.getKey();
String iv = secretProperties.getIv();
return Optional.ofNullable(dashboardUserDTO).map(item -> {
item.setPassword(AesUtils.aesEncryption(item.getPassword(), key, iv));
Integer createCount = dashboardUserService.createOrUpdate(item);
Expand Down

This file was deleted.

2 changes: 2 additions & 0 deletions shenyu-dist/shenyu-src-dist/src/main/assembly/source.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@
<!-- modules ignore -->
<exclude>shenyu-integrated-test/**</exclude>
<exclude>shenyu-examples/**</exclude>
<exclude>shenyu-admin/src/main/resources/static/*.css</exclude>
<exclude>shenyu-admin/src/main/resources/static/*.js</exclude>
</excludes>
</fileSet>
</fileSets>
Expand Down

0 comments on commit 04fab08

Please sign in to comment.