Wei
Wei
sync en_US to zh_CN
现在PGYER_API_KEY是写在最上层的,是不是意思是多个release name只能发布到同一个蒲公英账户下面 如果想不同的job发不到不同的蒲公英账户下面,现在是不是还不支持?
### New Submission Check List Please ensure your submission ticks all of these boxes: - [x] This is Software as a Service not self hosted - [x] It has a...
## Question Before asking a question, make sure you have(在提问之前,请确保你已经): - Read documentation(仔细阅读了官方文档) - Googled your question(百度搜索了你的问题) - Searched open and closed GitHub issues(搜索了开放和关闭的 GitHub issues) Please pay attention on...
### verify - [X] 我已经仔细阅读[项目文档](https://github.com/tindy2013/subconverter/blob/master/README-cn.md),确认现有功能无法解决我的需求 - [X] 我已经检索过现有[issue](https://github.com/tindy2013/subconverter/issues),确认与现有issue的内容并不重复 - [X] 我已经尝试自行解决,确认自己没有能力解决 ### 功能描述 我现在正在使用合并订阅 但是并不想要内置的proxy-groups和rules,想用某一个订阅链接里面的proxy-groups和rules,应该怎么配置? ### 可能的解决方案 _No response_
As shown below, I want to dynamically read from the database 

`@Configuration class OpenApiInterceptor : Interceptor { override fun intercept(chain: Interceptor.Chain): Response { val response = chain.proceed(chain.request()) return response.newBuilder() .addHeader("Access-Control-Allow-Origin", "*") .addHeader("Access-Control-Allow-Methods", "*") .addHeader("Access-Control-Allow-Headers", "*") .build() } }` `@Bean fun corsConfigurer():...