mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 10:55:42 +03:00
This is mostly deprecation fixes and blueprint changes. There are some dependency updates too; the changes to Ember Basic Dropdown necessitated changing it to angle bracket component invocation. The conversion of the rest of the templates will happen separately.
8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
import AdapterError from '@ember-data/adapter/error';
|
|
|
|
export const NO_LEADER = 'No cluster leader';
|
|
|
|
export default AdapterError.extend({
|
|
message: NO_LEADER,
|
|
});
|