@model IEnumerable @{ ViewData["Title"] = "Edit Allowed Scopes"; ViewData["addAction"] = "AddScope"; ViewData["removeAction"] = "RemoveScope"; ViewData["rowKey"] = "Scope"; ViewData["valueField"] = "Scope"; ViewData["inputName"] = "scope"; ViewData["placeholder"] = "openid"; ViewData["clientId"] = Model.FirstOrDefault()?.ClientId ?? 0; }

Allowed Scopes

OAuth2 scopes this client is allowed to request. Each scope must be defined in the IdentityServer resource store. openid is mandatory for OIDC clients.

@await Html.PartialAsync("_EditableStringList", Model)

Back to client