allowedProjects.ts 485 B

12345678910111213141516171819
  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. };
  15. export const STARFISH_TYPE_FOR_PROJECT: {[project: string]: StarfishType} = {
  16. 5428557: StarfishType.MOBILE,
  17. };