| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
feature/DatabaseRefactor
|
|
|
|
|
|
Co-authored-by: gnattu <gnattu@users.noreply.github.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Remove passwordSha1 param from AuthenticateUser function
|
|
I think some people need to change their IDE configuration ;)
|
|
|
|
Restore caching for UserManager
Original-merge: f8b67ec44cc6432d89d918f54caffa45eef037d0
Merged-by: nielsvanvelzen <nielsvanvelzen@users.noreply.github.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
|
|
|
|
|
|
* Remove redundant user cache
* Use DI for IPasswordResetProvider and IAuthenticationProvider
|
|
This reverts commit 117d05d288da1d412159a29c0cb8d5c8259e48ae.
|
|
|
|
add EnableSubtitleManagement permission
|
|
|
|
|
|
|
|
# Conflicts:
# Emby.Server.Implementations/ApplicationHost.cs
|
|
|
|
|
|
|
|
|
|
Failed logins already get logged higher up the call chain
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Did a simple search/replace on the whole repo (except the RSSDP project)
This reduces LOC and should improve performance (methods containing a throw statement don't get inlined)
```
if \((\w+) == null\)
\s+\{
\s+throw new ArgumentNullException\((.*)\);
\s+\}
```
```
ArgumentNullException.ThrowIfNull($1);
```
|
|
|
|
* Use Guid.Equals(Guid) instead of the == override
* Ban the usage of Guid.Equals(Object) to prevent accidental boxing
* Compare to default(Guid) instead of Guid.Empty
|