Kianna d8df857561
UI: Part two custom messages bug bash (#25082)
* 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
2024-01-30 15:27:19 -08:00

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 = '';
}