新增下载头像

This commit is contained in:
wenc000 2020-06-17 09:22:21 +08:00
parent d8c54d81db
commit 2a7bde435c

View File

@ -49,6 +49,10 @@ public class AppFilter implements Filter {
* APP忘记密码 * APP忘记密码
*/ */
private static final String URL_FORGET_PASSWORD = "/**/app/user/forgetpassword"; private static final String URL_FORGET_PASSWORD = "/**/app/user/forgetpassword";
/**
* 下载头像
*/
private static final String URL_DOWNLOAD_AVATAR = "/**/app/user/downloadavatar/**";
/** /**
* APP下载 * APP下载
*/ */
@ -81,6 +85,7 @@ public class AppFilter implements Filter {
|| antPathMatcher.match(URL_LOGIN_PHONE, requestUri) || antPathMatcher.match(URL_LOGIN_PHONE, requestUri)
|| antPathMatcher.match(URL_REGISTER, requestUri) || antPathMatcher.match(URL_REGISTER, requestUri)
|| antPathMatcher.match(URL_FORGET_PASSWORD, requestUri) || antPathMatcher.match(URL_FORGET_PASSWORD, requestUri)
|| antPathMatcher.match(URL_DOWNLOAD_AVATAR, requestUri)
|| antPathMatcher.match(URL_DOWNLOAD_APP, requestUri) || antPathMatcher.match(URL_DOWNLOAD_APP, requestUri)
|| antPathMatcher.match(URL_APP_VERSION_NUM, requestUri) || antPathMatcher.match(URL_APP_VERSION_NUM, requestUri)
|| antPathMatcher.match(URL_RELEASE_APP, requestUri) || antPathMatcher.match(URL_RELEASE_APP, requestUri)