From 0c7b9288cd9b6cf28457571708dd1b8c61858456 Mon Sep 17 00:00:00 2001 From: Zach Hammer Date: Mon, 29 Jan 2024 13:17:21 -0500 Subject: [PATCH] add copyrights --- plugins/awards-backend/src/database/awards.test.ts | 4 ++++ plugins/awards-backend/src/database/awards.ts | 4 ++++ plugins/awards-backend/src/index.ts | 4 ++++ plugins/awards-backend/src/plugin.ts | 4 ++++ plugins/awards-backend/src/run.ts | 4 ++++ plugins/awards-backend/src/service/router.test.ts | 4 ++++ plugins/awards-backend/src/service/router.ts | 4 ++++ plugins/awards-backend/src/service/standaloneServer.ts | 4 ++++ plugins/awards-backend/src/setupTests.ts | 4 ++++ plugins/awards-common/src/index.ts | 4 ++++ plugins/awards-common/src/types/award.ts | 4 ++++ plugins/awards-common/src/types/index.ts | 4 ++++ plugins/awards/dev/index.tsx | 4 ++++ plugins/awards/src/api/AwardsBackendClient.ts | 4 ++++ plugins/awards/src/api/index.ts | 4 ++++ plugins/awards/src/api/types.ts | 4 ++++ .../src/components/AwardEditComponent/AwardEditComponent.tsx | 4 ++++ .../AwardEditComponent/AwardsEditComponent.test.tsx | 4 ++++ plugins/awards/src/components/AwardEditComponent/index.ts | 4 ++++ .../components/AwardOwnersComponent/AwardOwnersComponent.tsx | 4 ++++ plugins/awards/src/components/AwardOwnersComponent/index.ts | 4 ++++ .../AwardRecipientsComponent/AwardRecipientsComponent.tsx | 4 ++++ .../awards/src/components/AwardRecipientsComponent/index.ts | 4 ++++ .../src/components/AwardViewComponent/AwardViewComponent.tsx | 4 ++++ plugins/awards/src/components/AwardViewComponent/index.ts | 4 ++++ .../src/components/AwardsEditPage/AwardsEditPage.test.tsx | 4 ++++ .../awards/src/components/AwardsEditPage/AwardsEditPage.tsx | 4 ++++ plugins/awards/src/components/AwardsEditPage/index.ts | 4 ++++ .../components/AwardsListComponent/AwardsListComponent.tsx | 4 ++++ plugins/awards/src/components/AwardsListComponent/index.ts | 4 ++++ .../src/components/AwardsListPage/AwardsListPage.test.tsx | 4 ++++ .../awards/src/components/AwardsListPage/AwardsListPage.tsx | 4 ++++ plugins/awards/src/components/AwardsListPage/index.ts | 4 ++++ .../src/components/AwardsNewPage/AwardsNewPage.test.tsx | 4 ++++ plugins/awards/src/components/AwardsNewPage/AwardsNewPage.tsx | 4 ++++ plugins/awards/src/components/AwardsNewPage/index.ts | 4 ++++ .../awards/src/components/AwardsViewPage/AwardsViewPage.tsx | 4 ++++ plugins/awards/src/components/AwardsViewPage/index.ts | 4 ++++ .../components/Cards/User/UserAwardsCard/UserAwardsCard.tsx | 4 ++++ .../awards/src/components/Cards/User/UserAwardsCard/index.ts | 4 ++++ plugins/awards/src/components/Cards/User/index.ts | 4 ++++ plugins/awards/src/components/Cards/index.ts | 4 ++++ plugins/awards/src/components/UserCollectionCard.tsx | 4 ++++ plugins/awards/src/components/index.ts | 4 ++++ plugins/awards/src/index.ts | 4 ++++ plugins/awards/src/plugin.test.ts | 4 ++++ plugins/awards/src/plugin.ts | 4 ++++ plugins/awards/src/router.tsx | 4 ++++ plugins/awards/src/routes.ts | 4 ++++ plugins/awards/src/setupTests.ts | 4 ++++ .../src/OktaOrgDiscoveryEntityProvider.test.ts | 4 ++++ .../src/OktaOrgDiscoveryEntityProvider.ts | 4 ++++ plugins/catalog-backend-module-okta/src/index.ts | 4 ++++ plugins/catalog-backend-module-okta/src/setupTests.ts | 4 ++++ .../src/components/EntityScaffolderContent.test.tsx | 4 ++++ .../src/components/EntityScaffolderContent.tsx | 4 ++++ .../src/components/TemplateListProvider.tsx | 4 ++++ plugins/entity-scaffolder-content/src/index.ts | 4 ++++ plugins/entity-scaffolder-content/src/plugin.test.ts | 4 ++++ plugins/entity-scaffolder-content/src/plugin.ts | 4 ++++ plugins/entity-scaffolder-content/src/routes.ts | 4 ++++ plugins/entity-scaffolder-content/src/setupTests.ts | 4 ++++ plugins/slack-catalog-backend/src/SlackUserProcessor.test.ts | 4 ++++ plugins/slack-catalog-backend/src/SlackUserProcessor.ts | 4 ++++ plugins/slack-catalog-backend/src/index.ts | 4 ++++ 65 files changed, 260 insertions(+) diff --git a/plugins/awards-backend/src/database/awards.test.ts b/plugins/awards-backend/src/database/awards.test.ts index 8c037ea..37964f9 100644 --- a/plugins/awards-backend/src/database/awards.test.ts +++ b/plugins/awards-backend/src/database/awards.test.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { v4 as uuid } from 'uuid'; import { Knex } from 'knex'; import { Award } from '@seatgeek/plugin-awards-common'; diff --git a/plugins/awards-backend/src/database/awards.ts b/plugins/awards-backend/src/database/awards.ts index 59e5a54..dcf8b0f 100644 --- a/plugins/awards-backend/src/database/awards.ts +++ b/plugins/awards-backend/src/database/awards.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { PluginDatabaseManager, resolvePackagePath, diff --git a/plugins/awards-backend/src/index.ts b/plugins/awards-backend/src/index.ts index f7c1a64..a756338 100644 --- a/plugins/awards-backend/src/index.ts +++ b/plugins/awards-backend/src/index.ts @@ -1,2 +1,6 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export * from './service/router'; export { awardsPlugin as default } from './plugin'; diff --git a/plugins/awards-backend/src/plugin.ts b/plugins/awards-backend/src/plugin.ts index 9b263a5..d5d7b46 100644 --- a/plugins/awards-backend/src/plugin.ts +++ b/plugins/awards-backend/src/plugin.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { loggerToWinstonLogger } from '@backstage/backend-common'; import { coreServices, diff --git a/plugins/awards-backend/src/run.ts b/plugins/awards-backend/src/run.ts index 79c6bd6..2262a91 100644 --- a/plugins/awards-backend/src/run.ts +++ b/plugins/awards-backend/src/run.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { getRootLogger } from '@backstage/backend-common'; import yn from 'yn'; import { startStandaloneServer } from './service/standaloneServer'; diff --git a/plugins/awards-backend/src/service/router.test.ts b/plugins/awards-backend/src/service/router.test.ts index 8161276..73f4e9a 100644 --- a/plugins/awards-backend/src/service/router.test.ts +++ b/plugins/awards-backend/src/service/router.test.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { DatabaseManager, getVoidLogger } from '@backstage/backend-common'; import { BackstageIdentityResponse, diff --git a/plugins/awards-backend/src/service/router.ts b/plugins/awards-backend/src/service/router.ts index 98fb8e9..0f91d6c 100644 --- a/plugins/awards-backend/src/service/router.ts +++ b/plugins/awards-backend/src/service/router.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { PluginDatabaseManager, errorHandler } from '@backstage/backend-common'; import express from 'express'; import Router from 'express-promise-router'; diff --git a/plugins/awards-backend/src/service/standaloneServer.ts b/plugins/awards-backend/src/service/standaloneServer.ts index 6e17b0d..5fc81d3 100644 --- a/plugins/awards-backend/src/service/standaloneServer.ts +++ b/plugins/awards-backend/src/service/standaloneServer.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { createServiceBuilder, DatabaseManager, diff --git a/plugins/awards-backend/src/setupTests.ts b/plugins/awards-backend/src/setupTests.ts index cb0ff5c..2cafabd 100644 --- a/plugins/awards-backend/src/setupTests.ts +++ b/plugins/awards-backend/src/setupTests.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export {}; diff --git a/plugins/awards-common/src/index.ts b/plugins/awards-common/src/index.ts index fcb073f..e926f54 100644 --- a/plugins/awards-common/src/index.ts +++ b/plugins/awards-common/src/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export * from './types'; diff --git a/plugins/awards-common/src/types/award.ts b/plugins/awards-common/src/types/award.ts index ecc69bd..0ab92b6 100644 --- a/plugins/awards-common/src/types/award.ts +++ b/plugins/awards-common/src/types/award.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export interface Award { uid: string; name: string; diff --git a/plugins/awards-common/src/types/index.ts b/plugins/awards-common/src/types/index.ts index b91c639..932b813 100644 --- a/plugins/awards-common/src/types/index.ts +++ b/plugins/awards-common/src/types/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export * from './award'; diff --git a/plugins/awards/dev/index.tsx b/plugins/awards/dev/index.tsx index fc214e0..1ff6492 100644 --- a/plugins/awards/dev/index.tsx +++ b/plugins/awards/dev/index.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React from 'react'; import { createDevApp } from '@backstage/dev-utils'; import { awardsPlugin, AwardsPage } from '../src/plugin'; diff --git a/plugins/awards/src/api/AwardsBackendClient.ts b/plugins/awards/src/api/AwardsBackendClient.ts index 626a310..efc7417 100644 --- a/plugins/awards/src/api/AwardsBackendClient.ts +++ b/plugins/awards/src/api/AwardsBackendClient.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { DiscoveryApi, FetchApi } from '@backstage/core-plugin-api'; import { Award } from '@seatgeek/plugin-awards-common'; import { AwardsApi } from './types'; diff --git a/plugins/awards/src/api/index.ts b/plugins/awards/src/api/index.ts index 4696e61..dcab19f 100644 --- a/plugins/awards/src/api/index.ts +++ b/plugins/awards/src/api/index.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export type { AwardsApi } from './types'; export { awardsApiRef } from './types'; export { AwardsBackendApi } from './AwardsBackendClient'; diff --git a/plugins/awards/src/api/types.ts b/plugins/awards/src/api/types.ts index 6d8d781..0ea6785 100644 --- a/plugins/awards/src/api/types.ts +++ b/plugins/awards/src/api/types.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { createApiRef } from '@backstage/core-plugin-api'; import { Award } from '@seatgeek/plugin-awards-common'; diff --git a/plugins/awards/src/components/AwardEditComponent/AwardEditComponent.tsx b/plugins/awards/src/components/AwardEditComponent/AwardEditComponent.tsx index 44d3cef..f43b896 100644 --- a/plugins/awards/src/components/AwardEditComponent/AwardEditComponent.tsx +++ b/plugins/awards/src/components/AwardEditComponent/AwardEditComponent.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { InfoCard, Progress, diff --git a/plugins/awards/src/components/AwardEditComponent/AwardsEditComponent.test.tsx b/plugins/awards/src/components/AwardEditComponent/AwardsEditComponent.test.tsx index bac298c..ef45a1e 100644 --- a/plugins/awards/src/components/AwardEditComponent/AwardsEditComponent.test.tsx +++ b/plugins/awards/src/components/AwardEditComponent/AwardsEditComponent.test.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React from 'react'; import { rest } from 'msw'; import { setupServer } from 'msw/node'; diff --git a/plugins/awards/src/components/AwardEditComponent/index.ts b/plugins/awards/src/components/AwardEditComponent/index.ts index 1017d7a..89307e4 100644 --- a/plugins/awards/src/components/AwardEditComponent/index.ts +++ b/plugins/awards/src/components/AwardEditComponent/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { AwardsEditComponent } from './AwardEditComponent'; diff --git a/plugins/awards/src/components/AwardOwnersComponent/AwardOwnersComponent.tsx b/plugins/awards/src/components/AwardOwnersComponent/AwardOwnersComponent.tsx index 1d3558f..87180fd 100644 --- a/plugins/awards/src/components/AwardOwnersComponent/AwardOwnersComponent.tsx +++ b/plugins/awards/src/components/AwardOwnersComponent/AwardOwnersComponent.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { Progress, ResponseErrorPanel } from '@backstage/core-components'; import { useApi } from '@backstage/core-plugin-api'; import React from 'react'; diff --git a/plugins/awards/src/components/AwardOwnersComponent/index.ts b/plugins/awards/src/components/AwardOwnersComponent/index.ts index 347ad91..3fffe3c 100644 --- a/plugins/awards/src/components/AwardOwnersComponent/index.ts +++ b/plugins/awards/src/components/AwardOwnersComponent/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { AwardOwnersComponent } from './AwardOwnersComponent'; diff --git a/plugins/awards/src/components/AwardRecipientsComponent/AwardRecipientsComponent.tsx b/plugins/awards/src/components/AwardRecipientsComponent/AwardRecipientsComponent.tsx index 6fc2954..22252d8 100644 --- a/plugins/awards/src/components/AwardRecipientsComponent/AwardRecipientsComponent.tsx +++ b/plugins/awards/src/components/AwardRecipientsComponent/AwardRecipientsComponent.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { Progress, ResponseErrorPanel } from '@backstage/core-components'; import { useApi } from '@backstage/core-plugin-api'; import React from 'react'; diff --git a/plugins/awards/src/components/AwardRecipientsComponent/index.ts b/plugins/awards/src/components/AwardRecipientsComponent/index.ts index f959ca5..92aa012 100644 --- a/plugins/awards/src/components/AwardRecipientsComponent/index.ts +++ b/plugins/awards/src/components/AwardRecipientsComponent/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { AwardRecipientsComponent } from './AwardRecipientsComponent'; diff --git a/plugins/awards/src/components/AwardViewComponent/AwardViewComponent.tsx b/plugins/awards/src/components/AwardViewComponent/AwardViewComponent.tsx index 7aaaf79..6b939b0 100644 --- a/plugins/awards/src/components/AwardViewComponent/AwardViewComponent.tsx +++ b/plugins/awards/src/components/AwardViewComponent/AwardViewComponent.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { InfoCard, Progress, diff --git a/plugins/awards/src/components/AwardViewComponent/index.ts b/plugins/awards/src/components/AwardViewComponent/index.ts index a3fd762..3e1311f 100644 --- a/plugins/awards/src/components/AwardViewComponent/index.ts +++ b/plugins/awards/src/components/AwardViewComponent/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { AwardViewComponent } from './AwardViewComponent'; diff --git a/plugins/awards/src/components/AwardsEditPage/AwardsEditPage.test.tsx b/plugins/awards/src/components/AwardsEditPage/AwardsEditPage.test.tsx index 6aa68e2..2d8bad2 100644 --- a/plugins/awards/src/components/AwardsEditPage/AwardsEditPage.test.tsx +++ b/plugins/awards/src/components/AwardsEditPage/AwardsEditPage.test.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React from 'react'; import { rest } from 'msw'; import { setupServer } from 'msw/node'; diff --git a/plugins/awards/src/components/AwardsEditPage/AwardsEditPage.tsx b/plugins/awards/src/components/AwardsEditPage/AwardsEditPage.tsx index 92870c7..f9d5d08 100644 --- a/plugins/awards/src/components/AwardsEditPage/AwardsEditPage.tsx +++ b/plugins/awards/src/components/AwardsEditPage/AwardsEditPage.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React from 'react'; import { Grid } from '@material-ui/core'; import { Header, Page, Content } from '@backstage/core-components'; diff --git a/plugins/awards/src/components/AwardsEditPage/index.ts b/plugins/awards/src/components/AwardsEditPage/index.ts index d9c5e0d..b367fc2 100644 --- a/plugins/awards/src/components/AwardsEditPage/index.ts +++ b/plugins/awards/src/components/AwardsEditPage/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { AwardsEditPage } from './AwardsEditPage'; diff --git a/plugins/awards/src/components/AwardsListComponent/AwardsListComponent.tsx b/plugins/awards/src/components/AwardsListComponent/AwardsListComponent.tsx index abd9e16..06ff620 100644 --- a/plugins/awards/src/components/AwardsListComponent/AwardsListComponent.tsx +++ b/plugins/awards/src/components/AwardsListComponent/AwardsListComponent.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React from 'react'; import { Table, diff --git a/plugins/awards/src/components/AwardsListComponent/index.ts b/plugins/awards/src/components/AwardsListComponent/index.ts index b386408..2b099d8 100644 --- a/plugins/awards/src/components/AwardsListComponent/index.ts +++ b/plugins/awards/src/components/AwardsListComponent/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { AwardsListComponent } from './AwardsListComponent'; diff --git a/plugins/awards/src/components/AwardsListPage/AwardsListPage.test.tsx b/plugins/awards/src/components/AwardsListPage/AwardsListPage.test.tsx index 234dba0..ae2c763 100644 --- a/plugins/awards/src/components/AwardsListPage/AwardsListPage.test.tsx +++ b/plugins/awards/src/components/AwardsListPage/AwardsListPage.test.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React from 'react'; import { rest } from 'msw'; import { setupServer } from 'msw/node'; diff --git a/plugins/awards/src/components/AwardsListPage/AwardsListPage.tsx b/plugins/awards/src/components/AwardsListPage/AwardsListPage.tsx index da8e186..6bde475 100644 --- a/plugins/awards/src/components/AwardsListPage/AwardsListPage.tsx +++ b/plugins/awards/src/components/AwardsListPage/AwardsListPage.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React from 'react'; import { Grid } from '@material-ui/core'; import { Header, Page, Content, LinkButton } from '@backstage/core-components'; diff --git a/plugins/awards/src/components/AwardsListPage/index.ts b/plugins/awards/src/components/AwardsListPage/index.ts index d133d17..39c8072 100644 --- a/plugins/awards/src/components/AwardsListPage/index.ts +++ b/plugins/awards/src/components/AwardsListPage/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { AwardsListPage } from './AwardsListPage'; diff --git a/plugins/awards/src/components/AwardsNewPage/AwardsNewPage.test.tsx b/plugins/awards/src/components/AwardsNewPage/AwardsNewPage.test.tsx index 24564bf..1544892 100644 --- a/plugins/awards/src/components/AwardsNewPage/AwardsNewPage.test.tsx +++ b/plugins/awards/src/components/AwardsNewPage/AwardsNewPage.test.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React from 'react'; import { rest } from 'msw'; import { setupServer } from 'msw/node'; diff --git a/plugins/awards/src/components/AwardsNewPage/AwardsNewPage.tsx b/plugins/awards/src/components/AwardsNewPage/AwardsNewPage.tsx index d6db3f9..f1c510b 100644 --- a/plugins/awards/src/components/AwardsNewPage/AwardsNewPage.tsx +++ b/plugins/awards/src/components/AwardsNewPage/AwardsNewPage.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React from 'react'; import { Grid } from '@material-ui/core'; import { Header, Page, Content } from '@backstage/core-components'; diff --git a/plugins/awards/src/components/AwardsNewPage/index.ts b/plugins/awards/src/components/AwardsNewPage/index.ts index adefc16..fd0f772 100644 --- a/plugins/awards/src/components/AwardsNewPage/index.ts +++ b/plugins/awards/src/components/AwardsNewPage/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { AwardsNewPage } from './AwardsNewPage'; diff --git a/plugins/awards/src/components/AwardsViewPage/AwardsViewPage.tsx b/plugins/awards/src/components/AwardsViewPage/AwardsViewPage.tsx index 85176eb..49879d0 100644 --- a/plugins/awards/src/components/AwardsViewPage/AwardsViewPage.tsx +++ b/plugins/awards/src/components/AwardsViewPage/AwardsViewPage.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React from 'react'; import { Grid } from '@material-ui/core'; import { Header, Page, Content } from '@backstage/core-components'; diff --git a/plugins/awards/src/components/AwardsViewPage/index.ts b/plugins/awards/src/components/AwardsViewPage/index.ts index 30a647f..585cb51 100644 --- a/plugins/awards/src/components/AwardsViewPage/index.ts +++ b/plugins/awards/src/components/AwardsViewPage/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { AwardsViewPage } from './AwardsViewPage'; diff --git a/plugins/awards/src/components/Cards/User/UserAwardsCard/UserAwardsCard.tsx b/plugins/awards/src/components/Cards/User/UserAwardsCard/UserAwardsCard.tsx index 1df2948..7a39230 100644 --- a/plugins/awards/src/components/Cards/User/UserAwardsCard/UserAwardsCard.tsx +++ b/plugins/awards/src/components/Cards/User/UserAwardsCard/UserAwardsCard.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { InfoCard, Link, diff --git a/plugins/awards/src/components/Cards/User/UserAwardsCard/index.ts b/plugins/awards/src/components/Cards/User/UserAwardsCard/index.ts index 6b25334..5caa9fe 100644 --- a/plugins/awards/src/components/Cards/User/UserAwardsCard/index.ts +++ b/plugins/awards/src/components/Cards/User/UserAwardsCard/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export * from './UserAwardsCard'; diff --git a/plugins/awards/src/components/Cards/User/index.ts b/plugins/awards/src/components/Cards/User/index.ts index 6b25334..5caa9fe 100644 --- a/plugins/awards/src/components/Cards/User/index.ts +++ b/plugins/awards/src/components/Cards/User/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export * from './UserAwardsCard'; diff --git a/plugins/awards/src/components/Cards/index.ts b/plugins/awards/src/components/Cards/index.ts index f6b9f36..e758c95 100644 --- a/plugins/awards/src/components/Cards/index.ts +++ b/plugins/awards/src/components/Cards/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export * from './User'; diff --git a/plugins/awards/src/components/UserCollectionCard.tsx b/plugins/awards/src/components/UserCollectionCard.tsx index 98dde6c..5523388 100644 --- a/plugins/awards/src/components/UserCollectionCard.tsx +++ b/plugins/awards/src/components/UserCollectionCard.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { UserEntity } from '@backstage/catalog-model'; import { Avatar, InfoCard } from '@backstage/core-components'; import { EntityRefLink } from '@backstage/plugin-catalog-react'; diff --git a/plugins/awards/src/components/index.ts b/plugins/awards/src/components/index.ts index a741541..cda5809 100644 --- a/plugins/awards/src/components/index.ts +++ b/plugins/awards/src/components/index.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export * from './Cards'; export { AwardsEditPage } from './AwardsEditPage'; export { AwardsListPage } from './AwardsListPage'; diff --git a/plugins/awards/src/index.ts b/plugins/awards/src/index.ts index 3a88b44..bafd3ac 100644 --- a/plugins/awards/src/index.ts +++ b/plugins/awards/src/index.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { awardsPlugin, AwardsPage } from './plugin'; export { UserAwardsCard } from './components'; export * from './api'; diff --git a/plugins/awards/src/plugin.test.ts b/plugins/awards/src/plugin.test.ts index 1dcdb4e..7676878 100644 --- a/plugins/awards/src/plugin.test.ts +++ b/plugins/awards/src/plugin.test.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { awardsPlugin } from './plugin'; describe('awards', () => { diff --git a/plugins/awards/src/plugin.ts b/plugins/awards/src/plugin.ts index bef7e2c..4199f37 100644 --- a/plugins/awards/src/plugin.ts +++ b/plugins/awards/src/plugin.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { createApiFactory, createPlugin, diff --git a/plugins/awards/src/router.tsx b/plugins/awards/src/router.tsx index ce9431b..4eba0b8 100644 --- a/plugins/awards/src/router.tsx +++ b/plugins/awards/src/router.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React from 'react'; import { Route, Routes } from 'react-router-dom'; import { AwardsListPage } from './components/AwardsListPage'; diff --git a/plugins/awards/src/routes.ts b/plugins/awards/src/routes.ts index 8efe32d..d6ea039 100644 --- a/plugins/awards/src/routes.ts +++ b/plugins/awards/src/routes.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { createRouteRef, createSubRouteRef } from '@backstage/core-plugin-api'; export const rootRouteRef = createRouteRef({ diff --git a/plugins/awards/src/setupTests.ts b/plugins/awards/src/setupTests.ts index 7b0828b..090929f 100644 --- a/plugins/awards/src/setupTests.ts +++ b/plugins/awards/src/setupTests.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import '@testing-library/jest-dom'; diff --git a/plugins/catalog-backend-module-okta/src/OktaOrgDiscoveryEntityProvider.test.ts b/plugins/catalog-backend-module-okta/src/OktaOrgDiscoveryEntityProvider.test.ts index 0f1f45a..fe0a885 100644 --- a/plugins/catalog-backend-module-okta/src/OktaOrgDiscoveryEntityProvider.test.ts +++ b/plugins/catalog-backend-module-okta/src/OktaOrgDiscoveryEntityProvider.test.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { getVoidLogger } from '@backstage/backend-common'; import { TaskInvocationDefinition, TaskRunner } from '@backstage/backend-tasks'; import { ConfigReader } from '@backstage/config'; diff --git a/plugins/catalog-backend-module-okta/src/OktaOrgDiscoveryEntityProvider.ts b/plugins/catalog-backend-module-okta/src/OktaOrgDiscoveryEntityProvider.ts index 418a22c..d4c217f 100644 --- a/plugins/catalog-backend-module-okta/src/OktaOrgDiscoveryEntityProvider.ts +++ b/plugins/catalog-backend-module-okta/src/OktaOrgDiscoveryEntityProvider.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { Config } from '@backstage/config'; import { EntityProvider, diff --git a/plugins/catalog-backend-module-okta/src/index.ts b/plugins/catalog-backend-module-okta/src/index.ts index 16fcf2f..4badf89 100644 --- a/plugins/catalog-backend-module-okta/src/index.ts +++ b/plugins/catalog-backend-module-okta/src/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export * from './OktaOrgDiscoveryEntityProvider'; diff --git a/plugins/catalog-backend-module-okta/src/setupTests.ts b/plugins/catalog-backend-module-okta/src/setupTests.ts index cb0ff5c..2cafabd 100644 --- a/plugins/catalog-backend-module-okta/src/setupTests.ts +++ b/plugins/catalog-backend-module-okta/src/setupTests.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export {}; diff --git a/plugins/entity-scaffolder-content/src/components/EntityScaffolderContent.test.tsx b/plugins/entity-scaffolder-content/src/components/EntityScaffolderContent.test.tsx index cecdf27..f02a0c8 100644 --- a/plugins/entity-scaffolder-content/src/components/EntityScaffolderContent.test.tsx +++ b/plugins/entity-scaffolder-content/src/components/EntityScaffolderContent.test.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ jest.mock('@backstage/plugin-catalog-react', () => { return { ...jest.requireActual('@backstage/plugin-catalog-react'), diff --git a/plugins/entity-scaffolder-content/src/components/EntityScaffolderContent.tsx b/plugins/entity-scaffolder-content/src/components/EntityScaffolderContent.tsx index 1d4b830..eb34a77 100644 --- a/plugins/entity-scaffolder-content/src/components/EntityScaffolderContent.tsx +++ b/plugins/entity-scaffolder-content/src/components/EntityScaffolderContent.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React, { useMemo, useState } from 'react'; import { Entity } from '@backstage/catalog-model'; import { useEntity } from '@backstage/plugin-catalog-react'; diff --git a/plugins/entity-scaffolder-content/src/components/TemplateListProvider.tsx b/plugins/entity-scaffolder-content/src/components/TemplateListProvider.tsx index 1309bc9..db6e1bc 100644 --- a/plugins/entity-scaffolder-content/src/components/TemplateListProvider.tsx +++ b/plugins/entity-scaffolder-content/src/components/TemplateListProvider.tsx @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import React, { PropsWithChildren, useEffect } from 'react'; import { EntityKindFilter, diff --git a/plugins/entity-scaffolder-content/src/index.ts b/plugins/entity-scaffolder-content/src/index.ts index 5f42d0d..cfd5187 100644 --- a/plugins/entity-scaffolder-content/src/index.ts +++ b/plugins/entity-scaffolder-content/src/index.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { entityScaffolderContentPlugin, EntityScaffolderContent, diff --git a/plugins/entity-scaffolder-content/src/plugin.test.ts b/plugins/entity-scaffolder-content/src/plugin.test.ts index cb90ffb..7ab7c81 100644 --- a/plugins/entity-scaffolder-content/src/plugin.test.ts +++ b/plugins/entity-scaffolder-content/src/plugin.test.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { entityScaffolderContentPlugin } from './plugin'; describe('entity-scaffolder-content', () => { diff --git a/plugins/entity-scaffolder-content/src/plugin.ts b/plugins/entity-scaffolder-content/src/plugin.ts index 8673c93..65ae179 100644 --- a/plugins/entity-scaffolder-content/src/plugin.ts +++ b/plugins/entity-scaffolder-content/src/plugin.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { createPlugin, createRoutableExtension, diff --git a/plugins/entity-scaffolder-content/src/routes.ts b/plugins/entity-scaffolder-content/src/routes.ts index 1cb186c..7c9ff4c 100644 --- a/plugins/entity-scaffolder-content/src/routes.ts +++ b/plugins/entity-scaffolder-content/src/routes.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { createRouteRef } from '@backstage/core-plugin-api'; export const rootRouteRef = createRouteRef({ diff --git a/plugins/entity-scaffolder-content/src/setupTests.ts b/plugins/entity-scaffolder-content/src/setupTests.ts index 7b0828b..090929f 100644 --- a/plugins/entity-scaffolder-content/src/setupTests.ts +++ b/plugins/entity-scaffolder-content/src/setupTests.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import '@testing-library/jest-dom'; diff --git a/plugins/slack-catalog-backend/src/SlackUserProcessor.test.ts b/plugins/slack-catalog-backend/src/SlackUserProcessor.test.ts index 3197b75..a3486ac 100644 --- a/plugins/slack-catalog-backend/src/SlackUserProcessor.test.ts +++ b/plugins/slack-catalog-backend/src/SlackUserProcessor.test.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { WebClient } from '@slack/web-api'; import { SlackUserProcessor } from './SlackUserProcessor'; import { SystemEntity, UserEntity } from '@backstage/catalog-model'; diff --git a/plugins/slack-catalog-backend/src/SlackUserProcessor.ts b/plugins/slack-catalog-backend/src/SlackUserProcessor.ts index b027bf5..dbe39bf 100644 --- a/plugins/slack-catalog-backend/src/SlackUserProcessor.ts +++ b/plugins/slack-catalog-backend/src/SlackUserProcessor.ts @@ -1,3 +1,7 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ import { Entity, isUserEntity } from '@backstage/catalog-model'; import { Config } from '@backstage/config'; import { LocationSpec } from '@backstage/plugin-catalog-common'; diff --git a/plugins/slack-catalog-backend/src/index.ts b/plugins/slack-catalog-backend/src/index.ts index baf8caf..3daa270 100644 --- a/plugins/slack-catalog-backend/src/index.ts +++ b/plugins/slack-catalog-backend/src/index.ts @@ -1 +1,5 @@ +/* + * Copyright SeatGeek + * Licensed under the terms of the Apache-2.0 license. See LICENSE file in project root for terms. + */ export { SlackUserProcessor } from './SlackUserProcessor';