decide.nolog.cz/app/utils/intl-message.js
Jeldrik Hanschke 857f2baa16
simplify form validation and drop ember-cp-validations (#631)
* replace ember-cp-validations with custom validation logic for poll creation

* refactor poll participation to not use ember-cp-validations

* drop ember-cp-validations from create.settings route

* remove unused leftovers from ember-cp-validations

* fix potential leak

* assertion thrown in CI tests (Firefox) indicate that listener is cleaned up automatically

* synchronize translations
2023-10-15 15:27:02 +02:00

9 lines
138 B
JavaScript

export default class IntlMessage {
key;
options;
constructor(key, options) {
this.key = key;
this.options = options;
}
}