aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations
AgeCommit message (Collapse)Author
2020-08-15Gracefully handle exceptions in IEventConsumersPatrick Barron
2020-08-15Migrate ServerEventNotifier.OnHasPendingRestartChanged to IEventConsumerPatrick Barron
2020-08-15Migrate ServerEventNotifier.OnTaskCompleted to IEventConsumerPatrick Barron
2020-08-15Migrate ServerEventNotifier.OnUserUpdated to IEventConsumerPatrick Barron
2020-08-15Add EventingServiceCollectionExtensionsPatrick Barron
2020-08-15Create EventManagerPatrick Barron
2020-08-15Use IEventManager in UserManagerPatrick Barron
2020-08-15Migrates ServerEventNotifier.OnUserDeleted to IEventConsumerPatrick Barron
2020-08-15Rename to SessionEndedLoggerPatrick Barron
2020-08-15Document UserDeletedLoggerPatrick Barron
2020-08-15Document TaskCompletedLoggerPatrick Barron
2020-08-15Migrate ActivityLogEntryPoint.OnSessionEnded to IEventConsumerPatrick Barron
2020-08-15Migrate ActivityLogEntryPoint.OnSessionStarted to IEventConsumerPatrick Barron
2020-08-14Migrate ActivityLogEntryPoint.OnPackageInstallationFailed to IEventConsumerPatrick Barron
2020-08-14Migrate ActivityLogEntryPoint.OnPluginUpdated to IEventConsumerPatrick Barron
2020-08-14Migrate ActivityLogEntryPoint.OnPluginUninstalled to IEventConsumerPatrick Barron
2020-08-14Migrate ActivityLogEntryPoint.OnPluginInstalled to IEventConsumerPatrick Barron
2020-08-13Migrate ActivityLogEntryPoint.OnAuthenticationSucceeded to IEventConsumerPatrick Barron
2020-08-13Migrate ActivityLogEntryPoint.OnAuthenticationFailed to IEventConsumerPatrick Barron
2020-08-13Migrate ActivityLogEntryPoint.OnUserLockedOut to IEventConsumerPatrick Barron
2020-08-13Migrate ActivityLogEntryPoint.OnUserPasswordChanged to IEventConsumerPatrick Barron
2020-08-13Migrate ActivityLogEntryPoint.OnUserDeleted to IEventConsumerPatrick Barron
2020-08-13Migrate ActivityLogEntryPoint.OnUserCreated to IEventConsumerPatrick Barron
2020-08-13Move GenericEventArgs to Jellyfin.Data.EventsPatrick Barron
2020-08-13Migrate ActivityLogEntryPoint.OnSubtitleDownloadFailure to IEventConsumerPatrick Barron
2020-08-13Migrate ActivityLogEntryPoint.OnTaskCompleted to IEventConsumerPatrick Barron
2020-08-13Migrate ActivityLogEntryPoint.OnPlaybackStopped to IEventConsumerPatrick Barron
2020-08-13Migrate ActivityLogEntryPoint.OnPlaybackStart to IEventConsumerPatrick Barron
2020-08-12bump depscrobibero
2020-08-08Make DisplayPreferencesManager scopedPatrick Barron
2020-08-04Merge pull request #3784 from barronpm/add-syncAnthony Lavado
Minor fixes to ActivityManager
2020-08-01Minor fixes to ActivityManagerPatrick Barron
2020-08-01Merge pull request #3578 from barronpm/displaypreferences-efcoreBond-009
Migrate Display Preferences to EF Core
2020-07-31Merge pull request #3727 from K900/patch-1Anthony Lavado
Fix #3624
2020-07-31Use factory pattern to instantiate jellyfindb context to avoid disposed ↵cvium
contexts piling up in DI container
2020-07-28Fix #3624K900
It doesn't really make sense to throw an error when creating the default user, because the error is completely non-actionable. Instead, if the autodetected username is not valid, just fall back to a sane default.
2020-07-27Recreate display preferences migration.Patrick Barron
2020-07-27Serialize/deserialize new entities properly.Patrick Barron
2020-07-27Merge pull request #3679 from barronpm/json-1Anthony Lavado
Use System.Text.Json in DefaultPasswordResetProvider
2020-07-26Update comment to include spaceOdd Stråbø
2020-07-25Allow space in usernameOdd Stråbø
2020-07-25Use async json serialization.Patrick Barron
2020-07-23Use System.Text.Json in DefaultPasswordResetProviderPatrick Barron
2020-07-23Merge branch 'master' into displaypreferences-efcorePatrick Barron
2020-07-23Merge pull request #3664 from Bond-009/createuserasyncJoshua M. Boniface
Make CreateUser async
2020-07-23Merge pull request #3366 from barronpm/remove-usermanager-addpartsJoshua M. Boniface
Remove UserManager.AddParts
2020-07-23Merge pull request #3663 from crobibero/efcore-leakBond-009
Add missing usings to UserManager
2020-07-22Restructure query to avoid extra database access.Patrick Barron
2020-07-22Wrap context creation with usingPatrick Barron
2020-07-22Don't AddAsyncBond_009