mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
15 lines
301 B
JavaScript
15 lines
301 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import ReplicationController from 'replication/controllers/application';
|
|
|
|
export default ReplicationController.extend({
|
|
actions: {
|
|
updateTtl: function (ttl) {
|
|
this.set('ttl', `${ttl.seconds}s`);
|
|
},
|
|
},
|
|
});
|