allowedProjects.ts 372 B

1234567891011121314
  1. import {StarfishType} from 'sentry/views/starfish/types';
  2. export const ALLOWED_PROJECT_IDS_FOR_ORG_SLUG: {
  3. [slug: string]: string[];
  4. } = {
  5. sentry: ['1', '300688'],
  6. codecov: ['5215654'],
  7. peated: ['4505138082349056'],
  8. 'sentry-sdks': ['5428557'],
  9. };
  10. export const STARFISH_TYPE_FOR_PROJECT: {[project: string]: StarfishType} = {
  11. 5428557: StarfishType.MOBILE,
  12. };