-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
Copy pathcloud.iws
174 lines (174 loc) · 15.2 KB
/
cloud.iws
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AutoImportSettings">
<option name="autoReloadType" value="SELECTIVE" />
</component>
<component name="ChangeListManager">
<list default="true" id="8639f85f-5db4-421b-97f0-5713b2379799" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/auth/authentication-client/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-client/pom.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-client/src/main/java/com/springboot/cloud/auth/client/config/FeignOkHttpConfig.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-client/src/main/java/com/springboot/cloud/auth/client/provider/AuthProvider.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-client/src/main/java/com/springboot/cloud/auth/client/service/IAuthService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-client/src/main/java/com/springboot/cloud/auth/client/service/impl/AuthService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-client/src/main/resources/application.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-client/src/test/java/com/springboot/cloud/auth/client/service/impl/AuthServiceTest.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/docs/权限校验.md" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/pom.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/readme.md" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/docker/Dockerfile" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/Oauth2AuthenticationApplication.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/config/BusConfig.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/config/LoadResourceDefine.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/config/ResourceServerConfig.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/events/ResourceBusReceiver.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/provider/ResourceProvider.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/provider/ResourceProviderFallback.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/rest/AuthenticationController.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/rest/HttpServletRequestAuthWrapper.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/IAuthenticationService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/IGroupService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/IPermissionService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/IResourceService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/NewMvcRequestMatcher.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/impl/AuthenticationService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/impl/GroupService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/impl/PermissionService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/auth/authentication/service/impl/ResourceService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/java/com/springboot/cloud/sysadmin/organization/entity/po/Resource.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/resources/application-local.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/resources/application.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/main/resources/bootstrap.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/test/java/com/springboot/cloud/auth/authentication/ApplicationTests.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/test/java/com/springboot/cloud/auth/authentication/service/impl/AuthenticationServiceTest.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/test/java/com/springboot/cloud/auth/authentication/service/impl/ResourceServiceTest.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authentication-server/src/test/resources/application.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/pom.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/readme.md" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/docker/Dockerfile" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/Oauth2AuthorizationApplication.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/config/AuthorizationServerConfig.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/config/WebServerSecurityConfig.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/entity/Role.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/entity/User.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/exception/AuthErrorType.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/exception/CustomOauthException.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/exception/CustomOauthExceptionSerializer.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/exception/CustomWebResponseExceptionTranslator.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/exception/GlobalExceptionHandlerAdvice.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/CustomUserDetailsService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/MobileUserDetailsService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/enhancer/CustomTokenEnhancer.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/granter/MobileAuthenticationProvider.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/granter/MobileAuthenticationToken.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/oauth2/granter/MobileTokenGranter.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/provider/OrganizationProvider.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/provider/OrganizationProviderFallback.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/provider/SmsCodeProvider.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/provider/SmsCodeProviderFallback.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/service/IRoleService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/service/IUserService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/service/impl/RoleService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/java/com/springboot/auth/authorization/service/impl/UserService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/resources/application-local.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/resources/application.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/main/resources/bootstrap.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/test/java/com/springboot/auth/authorization/ApplicationTests.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/authorization-server/src/test/resources/application.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/db/db.sql" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/pom.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/auth/readme.md" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/cloud.ipr" beforeDir="false" afterPath="$PROJECT_DIR$/cloud.ipr" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="GitHubPullRequestSearchHistory">{
"lastFilter": {
"state": "OPEN",
"assignee": "zhoutaoo"
}
}</component>
<component name="GithubPullRequestsUISettings">{
"selectedUrlAndAccountId": {
"url": "https://github.com/zhoutaoo/SpringCloud.git",
"accountId": "6163d0d0-3624-4668-a5ed-1a2390057125"
}
}</component>
<component name="KubernetesApiPersistence"><![CDATA[{}]]></component>
<component name="KubernetesApiProvider"><![CDATA[{
"isMigrated": true
}]]></component>
<component name="ProblemsViewState">
<option name="selectedTabId" value="CurrentFile" />
</component>
<component name="ProjectColorInfo">{
"associatedIndex": 2
}</component>
<component name="ProjectId" id="2r0y5zszQOtG5othUjRzctzJ0EV" />
<component name="ProjectViewState">
<option name="autoscrollFromSource" value="true" />
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
<option name="showVisibilityIcons" value="true" />
</component>
<component name="PropertiesComponent"><![CDATA[{
"keyToString": {
"RunOnceActivity.ShowReadmeOnStart": "true",
"git-widget-placeholder": "master",
"kotlin-language-version-configured": "true",
"node.js.detected.package.eslint": "true",
"node.js.detected.package.tslint": "true",
"node.js.selected.package.eslint": "(autodetect)",
"node.js.selected.package.tslint": "(autodetect)",
"nodejs_package_manager_path": "npm",
"vue.rearranger.settings.migration": "true"
}
}]]></component>
<component name="RunManager">
<configuration default="true" type="JetRunConfigurationType">
<module name="auth" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration default="true" type="KotlinStandaloneScriptRunConfigurationType">
<module name="auth" />
<option name="filePath" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
</component>
<component name="SharedIndexes">
<attachedChunks>
<set>
<option value="bundled-jdk-9f38398b9061-39b83d9b5494-intellij.indexing.shared.core-IU-241.17890.1" />
<option value="bundled-js-predefined-1d06a55b98c1-0b3e54e931b4-JavaScript-IU-241.17890.1" />
</set>
</attachedChunks>
</component>
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="8639f85f-5db4-421b-97f0-5713b2379799" name="Changes" comment="" />
<created>1735710109962</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1735710109962</updated>
<workItem from="1735710111409" duration="285000" />
<workItem from="1735710872098" duration="8348000" />
</task>
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="3" />
</component>
</project>