|
5 | 5 | </component> |
6 | 6 | <component name="ChangeListManager"> |
7 | 7 | <list default="true" id="8639f85f-5db4-421b-97f0-5713b2379799" name="Changes" comment=""> |
8 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-client/.gitignore" beforeDir="false" /> |
9 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-client/pom.xml" beforeDir="false" /> |
10 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-client/src/main/java/com/springboot/cloud/auth/client/config/FeignOkHttpConfig.java" beforeDir="false" /> |
11 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-client/src/main/java/com/springboot/cloud/auth/client/provider/AuthProvider.java" beforeDir="false" /> |
12 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-client/src/main/java/com/springboot/cloud/auth/client/service/IAuthService.java" beforeDir="false" /> |
13 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-client/src/main/java/com/springboot/cloud/auth/client/service/impl/AuthService.java" beforeDir="false" /> |
14 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-client/src/main/resources/application.yml" beforeDir="false" /> |
15 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-client/src/test/java/com/springboot/cloud/auth/client/service/impl/AuthServiceTest.java" beforeDir="false" /> |
16 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/.gitignore" beforeDir="false" /> |
17 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/docs/权限校验.md" beforeDir="false" /> |
18 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/pom.xml" beforeDir="false" /> |
19 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/readme.md" beforeDir="false" /> |
20 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/docker/Dockerfile" beforeDir="false" /> |
21 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/Oauth2AuthenticationApplication.java" beforeDir="false" /> |
22 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/config/BusConfig.java" beforeDir="false" /> |
23 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/config/LoadResourceDefine.java" beforeDir="false" /> |
24 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/config/ResourceServerConfig.java" beforeDir="false" /> |
25 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/events/ResourceBusReceiver.java" beforeDir="false" /> |
26 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/provider/ResourceProvider.java" beforeDir="false" /> |
27 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/provider/ResourceProviderFallback.java" beforeDir="false" /> |
28 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/rest/AuthenticationController.java" beforeDir="false" /> |
29 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/rest/HttpServletRequestAuthWrapper.java" beforeDir="false" /> |
30 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/IAuthenticationService.java" beforeDir="false" /> |
31 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/IGroupService.java" beforeDir="false" /> |
32 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/IPermissionService.java" beforeDir="false" /> |
33 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/IResourceService.java" beforeDir="false" /> |
34 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/NewMvcRequestMatcher.java" beforeDir="false" /> |
35 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/impl/AuthenticationService.java" beforeDir="false" /> |
36 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/impl/GroupService.java" beforeDir="false" /> |
37 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/impl/PermissionService.java" beforeDir="false" /> |
38 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/impl/ResourceService.java" beforeDir="false" /> |
39 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/sysadmin/organization/entity/po/Resource.java" beforeDir="false" /> |
40 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/resources/application-local.yml" beforeDir="false" /> |
41 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/resources/application.yml" beforeDir="false" /> |
42 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/resources/bootstrap.yml" beforeDir="false" /> |
43 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/test/java/com/springboot/cloud/auth/authentication/ApplicationTests.java" beforeDir="false" /> |
44 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/test/java/com/springboot/cloud/auth/authentication/service/impl/AuthenticationServiceTest.java" beforeDir="false" /> |
45 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/test/java/com/springboot/cloud/auth/authentication/service/impl/ResourceServiceTest.java" beforeDir="false" /> |
46 | | - <change beforePath="$PROJECT_DIR$/auth/authentication-server/src/test/resources/application.yml" beforeDir="false" /> |
47 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/.gitignore" beforeDir="false" /> |
48 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/pom.xml" beforeDir="false" /> |
49 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/readme.md" beforeDir="false" /> |
50 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/docker/Dockerfile" beforeDir="false" /> |
51 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/Oauth2AuthorizationApplication.java" beforeDir="false" /> |
52 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/config/AuthorizationServerConfig.java" beforeDir="false" /> |
53 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/config/WebServerSecurityConfig.java" beforeDir="false" /> |
54 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/entity/Role.java" beforeDir="false" /> |
55 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/entity/User.java" beforeDir="false" /> |
56 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/exception/AuthErrorType.java" beforeDir="false" /> |
57 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/exception/CustomOauthException.java" beforeDir="false" /> |
58 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/exception/CustomOauthExceptionSerializer.java" beforeDir="false" /> |
59 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/exception/CustomWebResponseExceptionTranslator.java" beforeDir="false" /> |
60 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/exception/GlobalExceptionHandlerAdvice.java" beforeDir="false" /> |
61 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/CustomUserDetailsService.java" beforeDir="false" /> |
62 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/MobileUserDetailsService.java" beforeDir="false" /> |
63 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/enhancer/CustomTokenEnhancer.java" beforeDir="false" /> |
64 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/granter/MobileAuthenticationProvider.java" beforeDir="false" /> |
65 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/granter/MobileAuthenticationToken.java" beforeDir="false" /> |
66 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/granter/MobileTokenGranter.java" beforeDir="false" /> |
67 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/provider/OrganizationProvider.java" beforeDir="false" /> |
68 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/provider/OrganizationProviderFallback.java" beforeDir="false" /> |
69 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/provider/SmsCodeProvider.java" beforeDir="false" /> |
70 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/provider/SmsCodeProviderFallback.java" beforeDir="false" /> |
71 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/service/IRoleService.java" beforeDir="false" /> |
72 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/service/IUserService.java" beforeDir="false" /> |
73 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/service/impl/RoleService.java" beforeDir="false" /> |
74 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/service/impl/UserService.java" beforeDir="false" /> |
75 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/resources/application-local.yml" beforeDir="false" /> |
76 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/resources/application.yml" beforeDir="false" /> |
77 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/resources/bootstrap.yml" beforeDir="false" /> |
78 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/test/java/com/springboot/auth/authorization/ApplicationTests.java" beforeDir="false" /> |
79 | | - <change beforePath="$PROJECT_DIR$/auth/authorization-server/src/test/resources/application.yml" beforeDir="false" /> |
80 | | - <change beforePath="$PROJECT_DIR$/auth/db/db.sql" beforeDir="false" /> |
81 | | - <change beforePath="$PROJECT_DIR$/auth/pom.xml" beforeDir="false" /> |
82 | | - <change beforePath="$PROJECT_DIR$/auth/readme.md" beforeDir="false" /> |
83 | | - <change beforePath="$PROJECT_DIR$/cloud.ipr" beforeDir="false" afterPath="$PROJECT_DIR$/cloud.ipr" afterDir="false" /> |
| 8 | + <change beforePath="$PROJECT_DIR$/cloud.iws" beforeDir="false" afterPath="$PROJECT_DIR$/cloud.iws" afterDir="false" /> |
84 | 9 | </list> |
85 | 10 | <option name="SHOW_DIALOG" value="false" /> |
86 | 11 | <option name="HIGHLIGHT_CONFLICTS" value="true" /> |
|
164 | 89 | <option name="presentableId" value="Default" /> |
165 | 90 | <updated>1735710109962</updated> |
166 | 91 | <workItem from="1735710111409" duration="285000" /> |
167 | | - <workItem from="1735710872098" duration="8348000" /> |
| 92 | + <workItem from="1735710872098" duration="9261000" /> |
168 | 93 | </task> |
169 | 94 | <servers /> |
170 | 95 | </component> |
|
0 commit comments