Skip to content

Commit a019533

Browse files
authored
Merge pull request #29 from devondragon/issue-23-Login-with-Google
Issue 23 login with google
2 parents 45f65c7 + 2d36367 commit a019533

14 files changed

Lines changed: 20 additions & 3 deletions

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@
55
"debug.javascript.defaultRuntimeExecutable": {
66
"pwa-node": "/Users/devon/.local/share/mise/shims/node"
77
},
8-
"python.defaultInterpreterPath": "/Users/devon/.local/share/mise/installs/python/3.13.2/bin/python"
8+
"python.defaultInterpreterPath": "/Users/devon/.local/share/mise/installs/python/3.13.2/bin/python",
9+
"java.jdt.ls.java.home": "/Users/devon/.local/share/mise/installs/java/17.0.2",
10+
"java.import.gradle.java.home": "/Users/devon/.local/share/mise/installs/java/17.0.2"
911
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ user:
122122
bcryptStrength: 12 # The bcrypt strength to use for password hashing. The higher the number, the longer it takes to hash the password. The default is 12. The minimum is 4. The maximum is 31.
123123
testHashTime: true # If true, the test hash time will be logged to the console on startup. This is useful for determining the optimal bcryptStrength value.
124124
defaultAction: deny # The default action for all requests. This can be either deny or allow.
125-
unprotectedURIs: /,/index.html,/favicon.ico,/apple-touch-icon-precomposed.png,/css/*,/js/*,/js/user/*,/js/event/*,/img/*,/user/registration,/user/resendRegistrationToken,/user/resetPassword,/user/registrationConfirm,/user/changePassword,/user/savePassword,/oauth2/authorization/*,/login,/user/login,/user/login.html,/swagger-ui.html,/swagger-ui/**,/v3/api-docs/**,/event/,/event/list.html,/event/**,/about.html # A comma delimited list of URIs that should not be protected by Spring Security if the defaultAction is deny.
125+
unprotectedURIs: /,/index.html,/favicon.ico,/apple-touch-icon-precomposed.png,/css/*,/js/*,/js/user/*,/js/event/*,/img/**,/user/registration,/user/resendRegistrationToken,/user/resetPassword,/user/registrationConfirm,/user/changePassword,/user/savePassword,/oauth2/authorization/*,/login,/user/login,/user/login.html,/swagger-ui.html,/swagger-ui/**,/v3/api-docs/**,/event/,/event/list.html,/event/**,/about.html # A comma delimited list of URIs that should not be protected by Spring Security if the defaultAction is deny.
126126
protectedURIs: /protected.html # A comma delimited list of URIs that should be protected by Spring Security if the defaultAction is allow.
127127
disableCSRFdURIs: /no-csrf-test # A comma delimited list of URIs that should not be protected by CSRF protection. This may include API endpoints that need to be called without a CSRF token.
128128

7.53 KB
Loading
8.03 KB
Loading
10.5 KB
Loading
11.2 KB
Loading
14.7 KB
Loading
2.74 KB
Loading
3.74 KB
Loading

0 commit comments

Comments
 (0)