diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-08-13 21:07:08 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-08-13 21:07:08 -0400 |
| commit | a1ecafb40d8cacb9ea63833ddc311c59d738044c (patch) | |
| tree | 8654d768b6236f2dbf8fa5353738dd5df9991857 /Jellyfin.Data/Events | |
| parent | 737a86d0cbd4dfce86bbe25fb7669f74cbde6d0a (diff) | |
Migrate ActivityLogEntryPoint.OnUserPasswordChanged to IEventConsumer
Diffstat (limited to 'Jellyfin.Data/Events')
| -rw-r--r-- | Jellyfin.Data/Events/Users/UserPasswordChangedEventArgs.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Jellyfin.Data/Events/Users/UserPasswordChangedEventArgs.cs b/Jellyfin.Data/Events/Users/UserPasswordChangedEventArgs.cs new file mode 100644 index 000000000..087ec9ab6 --- /dev/null +++ b/Jellyfin.Data/Events/Users/UserPasswordChangedEventArgs.cs @@ -0,0 +1,18 @@ +using Jellyfin.Data.Entities; + +namespace Jellyfin.Data.Events.Users +{ + /// <summary> + /// An event that occurs when a user's password has changed. + /// </summary> + public class UserPasswordChangedEventArgs : GenericEventArgs<User> + { + /// <summary> + /// Initializes a new instance of the <see cref="UserPasswordChangedEventArgs"/> class. + /// </summary> + /// <param name="arg">The user.</param> + public UserPasswordChangedEventArgs(User arg) : base(arg) + { + } + } +} |
