af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
37 lines
1.4 KiB
C#
37 lines
1.4 KiB
C#
// <copyright file="PluginInstallationCancelledNotifier.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Server.Implementations.Events.Consumers.Updates
|
|
{
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Events;
|
|
using MediaBrowser.Controller.Events.Updates;
|
|
using MediaBrowser.Controller.Session;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
/// <summary>
|
|
/// Notifies admin users when a plugin installation is cancelled.
|
|
/// </summary>
|
|
public class PluginInstallationCancelledNotifier : IEventConsumer<PluginInstallationCancelledEventArgs>
|
|
{
|
|
private readonly ISessionManager _sessionManager;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="PluginInstallationCancelledNotifier"/> class.
|
|
/// </summary>
|
|
/// <param name="sessionManager">The session manager.</param>
|
|
public PluginInstallationCancelledNotifier(ISessionManager sessionManager)
|
|
{
|
|
_sessionManager = sessionManager;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task OnEvent(PluginInstallationCancelledEventArgs eventArgs)
|
|
{
|
|
await _sessionManager.SendMessageToAdminSessions(SessionMessageType.PackageInstallationCancelled, eventArgs.Argument, CancellationToken.None).ConfigureAwait(false);
|
|
}
|
|
}
|
|
}
|