mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
692 B
16 lines
692 B
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Interfaces.Repositories; |
|
|
|
namespace ErsatzTV.Application.Configuration; |
|
|
|
public class GetLibraryRefreshIntervalHandler : IRequestHandler<GetLibraryRefreshInterval, int> |
|
{ |
|
private readonly IConfigElementRepository _configElementRepository; |
|
|
|
public GetLibraryRefreshIntervalHandler(IConfigElementRepository configElementRepository) => |
|
_configElementRepository = configElementRepository; |
|
|
|
public Task<int> Handle(GetLibraryRefreshInterval request, CancellationToken cancellationToken) => |
|
_configElementRepository.GetValue<int>(ConfigElementKey.LibraryRefreshInterval) |
|
.Map(result => result.IfNone(6)); |
|
}
|
|
|