not have authority access app tip

This commit is contained in:
MaxKey
2022-07-30 19:08:11 +08:00
parent c3db084e3d
commit 13def2a4c3
7 changed files with 46 additions and 1 deletions

View File

@@ -88,4 +88,13 @@ public class AuthorizeEndpoint extends AuthorizeBaseEndpoint{
return modelAndView;
}
@RequestMapping("/authz/refused")
public ModelAndView refused(){
ModelAndView modelAndView = new ModelAndView("authorize/authorize_refused");
Apps app = (Apps)WebContext.getAttribute(WebConstants.AUTHORIZE_SIGN_ON_APP);
app.transIconBase64();
modelAndView.addObject("model", app);
return modelAndView;
}
}