[Authorize(Roles = "Admin")] // samme som setorgadminasync()
        public async Task <ActionResult> RemoveOrgAdminAsync(int orgId, [FromBody] string userId)
        {
            await _organizerService.RemoveOrgAdminAsync(orgId, userId);

            Log.Information("User {userId} removed as Admin for Organizer {orgId}", userId, orgId);
            return(Ok());
        }