allowedProjects.ts 567 B

12345678910111213141516171819202122
  1. import {StarfishType} from 'sentry/views/starfish/types';
  2. export const ALLOWED_PROJECT_IDS_FOR_ORG_SLUG: {
  3. [slug: string]: string[];
  4. } = {
  5. sentry: [
  6. '1', // Sentry
  7. '300688', // Snuba
  8. '4505160011087872', // GibPotato PHP
  9. '4505148785885184', // GibPotato Go
  10. ],
  11. codecov: ['5215654'],
  12. peated: ['4505138082349056'],
  13. 'sentry-sdks': ['5428557'],
  14. demo: ['6249899'],
  15. 'testorg-az': ['6249899'],
  16. };
  17. export const STARFISH_TYPE_FOR_PROJECT: {[project: string]: StarfishType} = {
  18. 5428557: StarfishType.MOBILE,
  19. 6249899: StarfishType.MOBILE,
  20. };