feat: add job seeker notice settings API

This commit is contained in:
2026-07-22 20:29:59 +08:00
parent 0dc3ff96fc
commit c8c70652ac
13 changed files with 546 additions and 0 deletions

View File

@@ -118,6 +118,9 @@ public class SecurityConfig
"/cms/policyInfo/detail","/cms/policyInfo/list","/cms/industry/treeselect").permitAll()
// 静态资源,可匿名访问
.antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/profile/**").permitAll()
// 移动端消息接收设置包含用户个人偏好,必须使用站点 Token 访问。
// 该规则需位于 /app/** 的公共查询规则之前。
.antMatchers("/app/notice/settings").authenticated()
// 移动端公用查询,可匿名访问
.antMatchers("/app/common/**").permitAll()
.antMatchers("/app/**").permitAll()