This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 1ce6e39b authored by Michael Breu's avatar Michael Breu :speech_balloon:
Browse files

Fixing Authentication Problems

parent 46ba1d79
2 merge requests!188Merging Peer Reviewing et. al to Master,!164211 peer reviewing functionality
......@@ -159,6 +159,7 @@ public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
.antMatchers("/api/applicationInfo/**").permitAll() // everybody may retrieve deployment infos
.antMatchers("/api/authenticate").permitAll()
.antMatchers("/api/exercise/**").permitAll()
.antMatchers("/api/exerciseFile/**").permitAll()
.antMatchers("/api/refreshToken").permitAll()
.antMatchers("/api/register").denyAll()
.antMatchers("/api/activate").permitAll()
......
......@@ -9,7 +9,6 @@ import java.net.URISyntaxException;
import java.net.URL;
import java.net.URLEncoder;
import java.nio.charset.Charset;
import java.nio.file.Path;
import java.time.Instant;
import java.util.ArrayList;
import java.util.Collection;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment