@using BTCPayServer.Abstractions.Models @using BTCPayServer.Services.Stores @using BTCPayServer.Abstractions.Contracts @using BTCPayServer.Client @using Microsoft.AspNetCore.Mvc.TagHelpers @model StoreUsersViewModel @inject IScopeProvider ScopeProvider @inject StoreRepository StoreRepository @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData.SetActivePage(StoreNavPages.Users, "Store Users", Context.GetStoreData().Id); var roles = new SelectList( await StoreRepository.GetStoreRoles(ScopeProvider.GetCurrentStoreId()), nameof(StoreRepository.StoreRole.Id), nameof(StoreRepository.StoreRole.Role), Model.Role); } @section PageHeadContent { }

@ViewData["Title"]

Give other registered BTCPay Server users access to your store.
Guests will not be able to see or modify the store settings.

@if (!ViewContext.ModelState.IsValid) {
}
@foreach (var user in Model.Users) { }
Email Role Actions
@user.Email @user.Role
@section PageFootContent { }