mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 13:41:10 +02:00
* Fix preview button to show form validations * Show error if there are capability isuses * Hide create links if user does not have capability * Update tests and create message * Focus search input * Address feedback
14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Controller from '@ember/controller';
|
|
export default class MessagesController extends Controller {
|
|
queryParams = ['authenticated', 'page', 'pageFilter'];
|
|
|
|
authenticated = true;
|
|
page = 1;
|
|
pageFilter = '';
|
|
}
|