Пример #1
0
        public async Task <IActionResult> PersistedGrantsDelete(PersistedGrantsDto grants)
        {
            await _persistedGrantService.DeletePersistedGrantsAsync(grants.SubjectId);

            SuccessNotification(_localizer["SuccessPersistedGrantsDelete"], _localizer["SuccessTitle"]);

            return(RedirectToAction(nameof(PersistedGrants)));
        }
Пример #2
0
        public async Task <IActionResult> PersistedGrantsDelete(PersistedGrantsDto grants)
        {
            await _persistedGrantService.DeletePersistedGrantsAsync(grants.SubjectId);



            return(Success());
        }
 public PersistedGrantsByUserRequestedEvent(PersistedGrantsDto persistedGrants)
 {
     PersistedGrants = persistedGrants;
 }
Пример #4
0
 public PersistedGrantsIdentityByUsersRequestedEvent(PersistedGrantsDto persistedGrants)
 {
     PersistedGrants = persistedGrants;
 }