Super

Results 67 issues of Super

Hi, I am creating [another event-boxes implementation](https://github.com/EasyAbp/Abp.EventBus.Boxes.Dtm) that doesn't need the default OutboxSender and InboxProcessor. Could you please allow different OutboxSender and InboxProcessor for other event-boxes implementations? Thanks.

inactive

It seems that errors in the parallel mode cannot be caught: https://github.com/dapr/components-contrib/blob/v1.6.0/pubsub/rabbitmq/rabbitmq.go#L423 Based on https://github.com/dapr/components-contrib/pull/576

Hi, I'm a DTM msg user. It seems that "action" and "queryPrepared" require no-protocol URLs for gRPC endpoints, and the DTM uses HTTP protocol by default. How can I customize...

* 所有的商户(AppId)应有注册机制 * 支付结果通知接口、退款通知接口,应在路由上传入AppId,从注册的商户配置中匹配,用于进行签名验证,验证不通过的请求将不会传交给handler @GameBelial 你怎么看?

enhancement
discussion

微信回调时需要签名验证,而微信不会携带租户信息(实际上用户可能自定义甚至无关租户的mchid,比如EShop的多商户场景),因此需要做处理,考虑注册机制。 例如:注册表默认由内存提供,如果开发者想严格多租户或者用其他方式例如缓存和sql,他可以替换实现。在微信回调时从注册表匹配配置,方便签名验证。 关联:https://github.com/EasyAbp/Abp.WeChat/issues/3

enhancement

I saw the grouping demo: ```csharp context.Add( new SettingDefinition( "Connection.Ip", // Setting name "127.0.0.1", // Default value L("DisplayName:Connection.Ip"), // Display name L("Description:Connection.Ip") // Description ) .WithProperty(SettingUiConst.Group1, "Server") .WithProperty(SettingUiConst.Group2, "Connection") );...

https://github.com/abpframework/eShopOnAbp/pull/17/files#diff-d9826dc39b6b3d1e749e9617b356f71a8e1bca154cabf0138063457953bb1cedR10

Sub-entity means the class inherits the `Entity` or `Entity`. CRUD for Sub-entities doesn't need to generate specifics but generates during the aggregate root CRUD generation. Assume I am generating CRUD...