Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ops
/
monitor-ui
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
zhengyouwei
9 years ago
Commit
e214d7760c476a0b79e08198be1d5c4e048e63cc
1 parent
aeb96a6f
add
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
monitor-ui-ctrl/src/main/java/com/ui/ctrl/ManagerCtrl.java
monitor-ui-ctrl/src/main/java/com/ui/ctrl/ManagerCtrl.java
View file @
e214d77
...
...
@@ -108,6 +108,9 @@ public class ManagerCtrl {
@RequestMapping
(
"/deleteAuthModule"
)
@ResponseBody
public
BaseResponse
deleteAuthModule
(
String
name
)
{
if
(
"manage"
.
equals
(
name
)){
return
new
BaseResponse
(
201
,
"此模块无法delete"
);
}
Map
map
=
new
HashMap
<>();
map
.
put
(
"name"
,
name
);
BaseResponse
response
=
httpRestClient
.
defaultGet
(
HttpUriContants
.
MODULE_DELETE_NAME
,
BaseResponse
.
class
,
map
);
...
...
Please
register
or
login
to post a comment