1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-21 12:05:42 +01:00

[EC-428] Redirect to Edit after creating Provider

This commit is contained in:
Rui Tome 2023-01-18 15:22:28 +00:00
parent b367ff4dea
commit 6347bca1ed
No known key found for this signature in database
GPG Key ID: 526239D96A8EC066

View File

@ -77,7 +77,7 @@ public class ProvidersController : Controller
await _providerService.CreateAsync(model.OwnerEmail);
return RedirectToAction("Index");
return RedirectToAction("View", new { id = provider.Id });
}
public async Task<IActionResult> View(Guid id)