mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
* add ember-cli-content-security-policy * only enable client side CSP when not in production - the go side handles this otherwise * add service that handles and stores CSP violations via the securitypolicyviolation event * update auth form component to show a specialized message when there's a CSP error * move to computed prop for showing the CSP error message * fix typos
7 lines
170 B
JavaScript
7 lines
170 B
JavaScript
import { clickable, text } from 'ember-cli-page-object';
|
|
|
|
export default {
|
|
errorText: text('[data-test-auth-error]'),
|
|
login: clickable('[data-test-auth-submit]'),
|
|
};
|