mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00

* Add Organizations to provider views Remove enabled/disabled toggle from provider. It's currently not used. * Remove provider Delete There are implications to deleting providers on the organizations they manage. We want to think through this flow before allowing delete from the admin portal. * Use toastr to display production exception messages. Update build actions to upgrade npm to v7. Use a custom error handler in production which displays a toast of the exception message and redirect to the offending page * Clarify provider create error message
12 lines
313 B
Plaintext
12 lines
313 B
Plaintext
@model ProviderViewModel
|
|
@{
|
|
ViewData["Title"] = "Provider: " + Model.Provider.Name;
|
|
}
|
|
|
|
<h1>Provider <small>@Model.Provider.Name</small></h1>
|
|
|
|
<h2>Information</h2>
|
|
@await Html.PartialAsync("_ViewInformation", Model)
|
|
@await Html.PartialAsync("Admins", Model)
|
|
@await Html.PartialAsync("Organizations", Model)
|