public async Task <IActionResult> Detail(string id, int?page)
        {
            var persistedGrants = await _persistedGrantService.GetPagedByUserAsync(id, page ?? 1);

            ViewBag.PersistedGrants = persistedGrants;

            return(View(new PersistedGrantModel
            {
                SubjectId = id
            }));
        }