mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 13:41:10 +02:00
18 lines
358 B
JavaScript
18 lines
358 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { inject as service } from '@ember/service';
|
|
import Route from '@ember/routing/route';
|
|
|
|
export default Route.extend({
|
|
replicationMode: service(),
|
|
beforeModel() {
|
|
this.replicationMode.setMode(null);
|
|
},
|
|
model() {
|
|
return this.modelFor('application');
|
|
},
|
|
});
|