ba5ae14b6c
* Added to subnav and basic table implemented * Existing services become service fragments, and services tab aggregated beneath job route * Index page within jobs/job/services * Watchable services * Lintfixes * Links to clients and individual services set up * Child service route * Keyboard shortcuts on service page * Model that shows consul services as well, plus level and provider cols * lintfix * Level as query param * Watch job for service name changes too * Lintfix * Testfixes * Placeholder mirage route
13 lines
383 B
JavaScript
13 lines
383 B
JavaScript
import { attr } from '@ember-data/model';
|
|
import Fragment from 'ember-data-model-fragments/fragment';
|
|
import { fragment } from 'ember-data-model-fragments/attributes';
|
|
|
|
export default class Service extends Fragment {
|
|
@attr('string') name;
|
|
@attr('string') portLabel;
|
|
@attr() tags;
|
|
@attr('string') onUpdate;
|
|
@attr('string') provider;
|
|
@fragment('consul-connect') connect;
|
|
}
|