5df7b72800
Report branding (top-left MSP logo, top-right client logo): - Add MspLogo to AppSettings; client logo already on TenantProfile - IUserSessionService.CurrentBranding composes MSP + active profile logo - New reusable LogoUpload component (InputFile -> base64 LogoData, 512KB cap) - MSP logo upload in Settings; optional client logo in profile create/edit - Wire ReportBranding into all 6 HTML export pages - Fix EditProfile dropping ClientLogo on edit Storage metrics: expose folder scan depth (0-20) in scan options UI, passed to existing StorageScanOptions.FolderDepth recursion. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
754 B
C#
23 lines
754 B
C#
using SharepointToolbox.Web.Core.Models;
|
|
|
|
namespace SharepointToolbox.Web.Services.Session;
|
|
|
|
/// <summary>
|
|
/// Scoped per Blazor circuit. Holds the active tenant profile for the current user.
|
|
/// All feature pages read the profile from here instead of asking the user per-request.
|
|
/// </summary>
|
|
public interface IUserSessionService
|
|
{
|
|
TenantProfile? CurrentProfile { get; }
|
|
bool HasProfile { get; }
|
|
AppSettings Settings { get; }
|
|
|
|
/// <summary>Branding for exported reports: MSP logo (settings) + active profile's client logo.</summary>
|
|
ReportBranding CurrentBranding { get; }
|
|
|
|
void SetProfile(TenantProfile profile);
|
|
Task ClearSessionAsync();
|
|
void UpdateSettings(AppSettings settings);
|
|
event Action? ProfileChanged;
|
|
}
|