12345678910111213141516171819202122 |
- import {GitHubIntegration} from './githubIntegration';
- export function CodeOwner(params = {}) {
- return {
- id: '1225',
- raw: '',
- dateCreated: '2022-11-18T15:05:47.450354Z',
- dateUpdated: '2023-02-24T18:43:08.729490Z',
- codeMappingId: '11',
- provider: 'github',
- codeMapping: GitHubIntegration(),
- ownershipSyntax: '',
- errors: {
- missing_user_emails: [],
- missing_external_users: [],
- missing_external_teams: [],
- teams_without_access: [],
- users_without_access: [],
- },
- ...params,
- };
- }
|