💥 Rename Pusher to Ring
This commit is contained in:
@@ -14,7 +14,7 @@ public class AccountEventService(
|
||||
Wallet.PaymentService payment,
|
||||
ICacheService cache,
|
||||
IStringLocalizer<Localization.AccountEventResource> localizer,
|
||||
PusherService.PusherServiceClient pusher,
|
||||
RingService.RingServiceClient pusher,
|
||||
SubscriptionService subscriptions,
|
||||
Pass.Leveling.ExperienceService experienceService
|
||||
)
|
||||
|
||||
@@ -28,7 +28,7 @@ public class AccountService(
|
||||
FileReferenceService.FileReferenceServiceClient fileRefs,
|
||||
AccountUsernameService uname,
|
||||
EmailService mailer,
|
||||
PusherService.PusherServiceClient pusher,
|
||||
RingService.RingServiceClient pusher,
|
||||
IStringLocalizer<NotificationResource> localizer,
|
||||
IStringLocalizer<EmailResource> emailLocalizer,
|
||||
ICacheService cache,
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace DysonNetwork.Pass.Account;
|
||||
public class RelationshipService(
|
||||
AppDatabase db,
|
||||
ICacheService cache,
|
||||
PusherService.PusherServiceClient pusher,
|
||||
RingService.RingServiceClient pusher,
|
||||
IStringLocalizer<NotificationResource> localizer
|
||||
)
|
||||
{
|
||||
|
||||
@@ -22,7 +22,7 @@ public class AuthController(
|
||||
AuthService auth,
|
||||
GeoIpService geo,
|
||||
ActionLogService als,
|
||||
PusherService.PusherServiceClient pusher,
|
||||
RingService.RingServiceClient pusher,
|
||||
IConfiguration configuration,
|
||||
IStringLocalizer<NotificationResource> localizer
|
||||
) : ControllerBase
|
||||
|
||||
@@ -6,7 +6,7 @@ using Microsoft.AspNetCore.Components;
|
||||
namespace DysonNetwork.Pass.Email;
|
||||
|
||||
public class EmailService(
|
||||
PusherService.PusherServiceClient pusher,
|
||||
RingService.RingServiceClient pusher,
|
||||
RazorViewRenderer viewRenderer,
|
||||
ILogger<EmailService> logger
|
||||
)
|
||||
|
||||
@@ -22,7 +22,7 @@ builder.Services.AddAppServices(builder.Configuration);
|
||||
builder.Services.AddAppRateLimiting();
|
||||
builder.Services.AddAppAuthentication();
|
||||
builder.Services.AddAppSwagger();
|
||||
builder.Services.AddPusherService();
|
||||
builder.Services.AddRingService();
|
||||
builder.Services.AddDriveService();
|
||||
builder.Services.AddDevelopService();
|
||||
|
||||
|
||||
@@ -53,7 +53,7 @@ public static class ServiceCollectionExtensions
|
||||
options.MaxSendMessageSize = 16 * 1024 * 1024; // 16MB
|
||||
});
|
||||
|
||||
services.AddPusherService();
|
||||
services.AddRingService();
|
||||
|
||||
// Register OIDC services
|
||||
services.AddScoped<OidcService, GoogleOidcService>();
|
||||
|
||||
@@ -17,7 +17,7 @@ namespace DysonNetwork.Pass.Wallet;
|
||||
public class PaymentService(
|
||||
AppDatabase db,
|
||||
WalletService wat,
|
||||
PusherService.PusherServiceClient pusher,
|
||||
RingService.RingServiceClient pusher,
|
||||
IStringLocalizer<NotificationResource> localizer,
|
||||
INatsConnection nats
|
||||
)
|
||||
|
||||
@@ -18,7 +18,7 @@ public class SubscriptionService(
|
||||
AppDatabase db,
|
||||
PaymentService payment,
|
||||
AccountService accounts,
|
||||
PusherService.PusherServiceClient pusher,
|
||||
RingService.RingServiceClient pusher,
|
||||
IStringLocalizer<NotificationResource> localizer,
|
||||
IConfiguration configuration,
|
||||
ICacheService cache,
|
||||
|
||||
Reference in New Issue
Block a user