|  | @@ -10,10 +10,11 @@ import org.springframework.security.oauth2.config.annotation.web.configuration.R
 | 
	
		
			
				|  |  |  public class ResourceServerConfig extends ResourceServerConfigurerAdapter {
 | 
	
		
			
				|  |  |      @Override
 | 
	
		
			
				|  |  |      public void configure(HttpSecurity http) throws Exception {
 | 
	
		
			
				|  |  | -        http.authorizeRequests().antMatchers("/v2/api-docs","/user/register",
 | 
	
		
			
				|  |  | -                "/group/join","/group/create","/group/quit","/room/leave","/room/statusSync",
 | 
	
		
			
				|  |  | -                "/room/statusImMsg","/group/batchDismiss","/private/send","/group/send",
 | 
	
		
			
				|  |  | -                "/group/dismiss","/room/statusImMsg","/history/get","/user/statusImUser","/liveRoom/recordSync")
 | 
	
		
			
				|  |  | +        http.authorizeRequests().antMatchers("/v2/api-docs", "/user/register",
 | 
	
		
			
				|  |  | +                        "/group/join", "/group/create", "/group/quit", "/room/leave", "/room/statusSync",
 | 
	
		
			
				|  |  | +                        "/room/statusImMsg", "/group/batchDismiss", "/private/send", "/group/send",
 | 
	
		
			
				|  |  | +                        "/group/dismiss", "/room/statusImMsg", "/history/get", "/user/statusImUser", "/liveRoom/recordSync",
 | 
	
		
			
				|  |  | +                        "/liveRoom/publishRoomMsg")
 | 
	
		
			
				|  |  |                  .permitAll().anyRequest().authenticated().and().csrf().disable();
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  }
 |