public async Task <IActionResult> PersistedGrantsDelete(PersistedGrantsDto grants) { await _persistedGrantService.DeletePersistedGrantsAsync(grants.SubjectId); SuccessNotification(_localizer["SuccessPersistedGrantsDelete"], _localizer["SuccessTitle"]); return(RedirectToAction(nameof(PersistedGrants))); }
public async Task <IActionResult> PersistedGrantsDelete(PersistedGrantsDto grants) { await _persistedGrantService.DeletePersistedGrantsAsync(grants.SubjectId); return(Success()); }
public PersistedGrantsByUserRequestedEvent(PersistedGrantsDto persistedGrants) { PersistedGrants = persistedGrants; }
public PersistedGrantsIdentityByUsersRequestedEvent(PersistedGrantsDto persistedGrants) { PersistedGrants = persistedGrants; }