123456789101112131415161718 |
- import {Group} from './group';
- export function ShortIdQueryResult(params = {}) {
- const group = Group({
- metadata: {
- type: 'group type',
- value: 'group description',
- },
- });
- return {
- organizationSlug: 'org-slug',
- projectSlug: 'project-slug',
- groupId: group.id,
- shortId: 'test-1',
- group,
- ...params,
- };
- }
|