Commit 7e95ee25 by guojuxing

去除免登录

parent 9f3645e5
......@@ -68,7 +68,6 @@ public class MenuController {
* @param appId

* @return com.gic.commons.webapi.reponse.RestResponse


*/
@IgnoreLogin
@RequestMapping("login-user-menu-of-app")
public RestResponse loginUserMenu(Integer currentMenu, String appId) {
Integer userId = UserDetailUtils.getUserDetail().getUserId();
......@@ -81,7 +80,6 @@ public class MenuController {
return EnterpriseRestResponse.failure(userMenu);
}
@IgnoreLogin
@RequestMapping("login-collaborator-menu-of-app")
public RestResponse getCollaboratorMenu(String appId) {
UserDetail userDetail = UserDetailUtils.getUserDetail();
......@@ -93,7 +91,6 @@ public class MenuController {
return EnterpriseRestResponse.failure(userMenu);
}
@IgnoreLogin
@RequestMapping("login-collaborator-operation-item")
public RestResponse getCollaboratorOperationItem(String appId) {
UserDetail userDetail = UserDetailUtils.getUserDetail();
......@@ -126,7 +123,6 @@ public class MenuController {

* @author guojuxing 

* @return com.gic.commons.webapi.reponse.RestResponse


*/
@IgnoreLogin
@RequestMapping("login-user-operation-item-of-app")
public RestResponse loginUserOperationItemOfApp(String appId) {
Integer userId = UserDetailUtils.getUserDetail().getUserId();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment