a1b3f00a69
* Add `Local` property to Datacenters * If you have not previous datacenter, redirect the user to the local dc * Add an `is-local` class to the local datacenter in the DC picker
14 lines
344 B
JavaScript
14 lines
344 B
JavaScript
import Model, { attr } from '@ember-data/model';
|
|
|
|
export const PRIMARY_KEY = 'uid';
|
|
export const FOREIGN_KEY = 'Datacenter';
|
|
export const SLUG_KEY = 'Name';
|
|
|
|
export default class Datacenter extends Model {
|
|
@attr('string') uid;
|
|
@attr('string') Name;
|
|
@attr('boolean') Local;
|
|
|
|
@attr('boolean', { defaultValue: () => true }) MeshEnabled;
|
|
}
|