* initial plumbing * scan for plex networks * save network contents to db as tags * eliminate network tag id churn * add network and show_network to search index * update last networks scan * show networks on tv show page * update changelog
6 lines
181 B
C#
6 lines
181 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Scanner.Application.Plex;
|
|
|
|
public record SynchronizePlexNetworks(int PlexLibraryId, bool ForceScan) : IRequest<Either<BaseError, Unit>>;
|