@@ -112,6 +112,7 @@ SecurityWebFilterChain securityWebFilterChain(ServerHttpSecurity http) {
112
112
ServerWebExchangeMatchers .pathMatchers (HttpMethod .GET ,ORGANIZATION_URL +"/*/datasourceTypes" ),// datasource types
113
113
ServerWebExchangeMatchers .pathMatchers (HttpMethod .GET ,ORGANIZATION_URL +"/byuser/*" ),
114
114
ServerWebExchangeMatchers .pathMatchers (HttpMethod .GET ,DATASOURCE_URL +"/jsDatasourcePlugins" ),
115
+ ServerWebExchangeMatchers .pathMatchers (HttpMethod .POST ,META_URL +"/" ),
115
116
116
117
ServerWebExchangeMatchers .pathMatchers (HttpMethod .GET ,GITHUB_STAR ),
117
118
@@ -145,6 +146,7 @@ SecurityWebFilterChain securityWebFilterChain(ServerHttpSecurity http) {
145
146
ServerWebExchangeMatchers .pathMatchers (HttpMethod .GET ,NewUrl .ORGANIZATION_URL +"/*/datasourceTypes" ),// datasource types
146
147
ServerWebExchangeMatchers .pathMatchers (HttpMethod .GET ,NewUrl .ORGANIZATION_URL +"/byuser/*" ),
147
148
ServerWebExchangeMatchers .pathMatchers (HttpMethod .GET ,NewUrl .DATASOURCE_URL +"/jsDatasourcePlugins" ),
149
+ ServerWebExchangeMatchers .pathMatchers (HttpMethod .POST ,NewUrl .META_URL +"/" ),
148
150
ServerWebExchangeMatchers .pathMatchers (HttpMethod .GET ,NewUrl .NPM_REGISTRY +"/**" ),
149
151
ServerWebExchangeMatchers .pathMatchers (HttpMethod .GET ,"/api/docs/**" )
150
152
)