mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
* remove cluster route and model boundary route mixins * add copyright header * remove old unit test * change replication/application route * don't use cluster route in replication * why have a base class at all? * test tweaks * remove afterModel redirect in replication * refactor targetRouteName to use derived state * Update route class name on replication-dr-promote.js --------- Co-authored-by: Matthew Irish <39469+meirish@users.noreply.github.com> Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com>
12 lines
307 B
JavaScript
12 lines
307 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Controller from '@ember/controller';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
export default class VaultController extends Controller {
|
|
queryParams = [{ redirectTo: 'redirect_to' }];
|
|
@tracked redirectTo = '';
|
|
}
|