mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-23 07:31:09 +02:00
* use alias for router injection * update @router declarations in engine files * fix remaining pki router imports * dynamically set router based on owner * address replication routers * update markdown docs * use non-deprecated import for getOwner * revert out of scope changes * add transition-to test
26 lines
773 B
JavaScript
26 lines
773 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Controller from '@ember/controller';
|
|
import { service } from '@ember/service';
|
|
import { action } from '@ember/object';
|
|
|
|
export default class CredentialsShowController extends Controller {
|
|
@service flashMessages;
|
|
@service('app-router') router;
|
|
|
|
@action
|
|
async revokeCredentials() {
|
|
try {
|
|
await this.model.destroyRecord();
|
|
this.flashMessages.success('Successfully revoked credentials');
|
|
this.router.transitionTo('vault.cluster.secrets.backend.kmip.credentials.index', this.scope, this.role);
|
|
} catch (e) {
|
|
this.flashMessages.danger(`There was an error revoking credentials: ${e.errors.join(' ')}`);
|
|
this.model.rollbackAttributes();
|
|
}
|
|
}
|
|
}
|