Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Handles logic related to the AdminSettings model & the configuration of app-wide settings.
AdminSettings
IAdminSettingsService.cs
_dbContextFactory
IDbContextFactory<NumaContext>
DbContextFactory
NumaContext
public AdminSettingsService( IDbContextFactory<NumaContext> dbContextFactory ) { _dbContextFactory = dbContextFactory ?? throw new ArgumentNullException( nameof( dbContextFactory ) ); }
CurrentAdminSettings
AdminSettings?
InitializeCurrentAdminSettingsAsync
Task
SaveCurrentAdminSettingsAsync
using Numa.Models; namespace Numa.Interfaces { public interface IAdminSettingsService { AdminSettings? CurrentAdminSettings { get; } Task InitializeCurrentAdminSettingsAsync(); Task SaveCurrentAdminSettingsAsync(); } }