Browse Source

reorganize the Message service project directory structure

pull/65/head
cKey 5 years ago
parent
commit
4eb6f46a37
  1. 2
      aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/AbpMessageServiceHttpApiHostModule.cs
  2. 4
      aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/Localization/HttpApiHost/en.json
  3. 4
      aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/Localization/HttpApiHost/zh-Hans.json
  4. 0
      aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/Notifications/MessageServiceDefinitionProvider.cs
  5. 0
      aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/Utils/SnowflakeIdGenerator.cs

2
aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/LINGYUN/Abp/MessageService/AbpMessageServiceHttpApiHostModule.cs → aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/AbpMessageServiceHttpApiHostModule.cs

@ -190,7 +190,7 @@ namespace LINGYUN.Abp.MessageService
options.Resources options.Resources
.Get<MessageServiceResource>() .Get<MessageServiceResource>()
.AddVirtualJson("/LINGYUN/Abp/MessageService/Localization/HttpApiHost"); .AddVirtualJson("/Localization/HttpApiHost");
}); });
context.Services.AddAuthentication("Bearer") context.Services.AddAuthentication("Bearer")

4
aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/LINGYUN/Abp/MessageService/Localization/HttpApiHost/en.json → aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/Localization/HttpApiHost/en.json

@ -2,6 +2,8 @@
"culture": "en", "culture": "en",
"texts": { "texts": {
"NewTenantRegisteredNotificationTitle": "Tenants create notification", "NewTenantRegisteredNotificationTitle": "Tenants create notification",
"NewTenantRegisteredNotificationMessage": "New tenants to create success, the tenant name: {0}!" "NewTenantRegisteredNotificationMessage": "New tenants to create success, the tenant name: {0}!",
"Permission:Hangfire": "Hangfire dashboard",
"Permission:ManageQueue": "Manage queue"
} }
} }

4
aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/LINGYUN/Abp/MessageService/Localization/HttpApiHost/zh-Hans.json → aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/Localization/HttpApiHost/zh-Hans.json

@ -2,6 +2,8 @@
"culture": "zh-Hans", "culture": "zh-Hans",
"texts": { "texts": {
"NewTenantRegisteredNotificationTitle": "租户创建通知", "NewTenantRegisteredNotificationTitle": "租户创建通知",
"NewTenantRegisteredNotificationMessage": "新租户创建成功,租户名称:{0}!" "NewTenantRegisteredNotificationMessage": "新租户创建成功,租户名称:{0}!",
"Permission:Hangfire": "Hangfire仪表板",
"Permission:ManageQueue": "管理队列"
} }
} }

0
aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/LINGYUN/Abp/MessageService/Notifications/MessageServiceDefinitionProvider.cs → aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/Notifications/MessageServiceDefinitionProvider.cs

0
aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/LINGYUN/Abp/MessageService/Utils/SnowflakeIdGenerator.cs → aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/Utils/SnowflakeIdGenerator.cs

Loading…
Cancel
Save