diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-12-22 14:44:26 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-12-22 14:44:26 +0100 |
| commit | 58ef5833b3f77f321c587dd86448c888029016ce (patch) | |
| tree | fe5e6f47781573cc1fb5938f9b8cd8b51022946a /code/api/Services/Admin/UserService.cs | |
| parent | 82ade3c31fb17b662feec59e9e654ceb66edbb7a (diff) | |
| download | storage-58ef5833b3f77f321c587dd86448c888029016ce.tar.xz storage-58ef5833b3f77f321c587dd86448c888029016ce.zip | |
feat: Many things
- Working Login/Logout
- Groundwork for web components
- Loading web-components with version tag
- Load temporal-polyfill globally
Diffstat (limited to 'code/api/Services/Admin/UserService.cs')
| -rw-r--r-- | code/api/Services/Admin/UserService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/api/Services/Admin/UserService.cs b/code/api/Services/Admin/UserService.cs index 94a64ef..faa67c0 100644 --- a/code/api/Services/Admin/UserService.cs +++ b/code/api/Services/Admin/UserService.cs @@ -40,7 +40,7 @@ public class UserService _logger.LogInformation("Logged out user {userId}", httpContext.User.FindFirstValue(AppClaims.USER_ID)); } - public async Task MarkUserAsDeleted(Guid userId, Guid actorId) { + public async Task MarkUserAsDeletedAsync(Guid userId, Guid actorId) { var user = _database.Users.FirstOrDefault(c => c.Id == userId); if (user == default) { _logger.LogInformation("Tried to delete unknown user {userId}", userId); |
