open-nomad/ui/mirage/factories/region.js
2023-04-10 15:36:59 +00:00

13 lines
244 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Factory } from 'ember-cli-mirage';
export default Factory.extend({
id: () => {
throw new Error('The region factory will not generate IDs!');
},
});