Skip to content

Commit

Permalink
wokring on the first cut of the new android client.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshlong committed Jul 27, 2013
1 parent 6c2ba70 commit bd8de0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ protected void configure(HttpSecurity http) throws Exception {
"/favicon.ico",
"/resources/"
};
http.authorizeUrls()
http.authorizeRequests()
.antMatchers(filesToLetThroughUnAuthorized).permitAll()
.anyRequest().authenticated();

Expand Down
2 changes: 1 addition & 1 deletion misc/file_upload.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<head><title>the title</title></head>
<body>

<form method="post" enctype="multipart/form-data" action="http://localhost:8080/rest/users/21/photo" >
<form method="post" enctype="multipart/form-data" action="http://localhost:8080/hateoas-data/users/5/photo" >

<div>
<label for="file">File</label>
Expand Down

0 comments on commit bd8de0b

Please sign in to comment.