Skip to content

Commit 0f43cc8

Browse files
Import static files to the repo and reference them (#1786)
Resolves OPS-3283. --------- Co-authored-by: Cezar Dascal <cezar@openops.com>
1 parent 260cb6d commit 0f43cc8

File tree

367 files changed

+780
-257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

367 files changed

+780
-257
lines changed

packages/blocks/ai/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const ai = createBlock({
88
auth: aiAuth,
99
categories: [BlockCategory.CORE],
1010
minimumSupportedRelease: '0.7.1',
11-
logoUrl: 'https://static.openops.com/blocks/openops-ai.svg',
11+
logoUrl: '/blocks/openops-ai.svg',
1212
authors: [],
1313
actions: [aiStep],
1414
triggers: [],

packages/blocks/anodot/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const anodot = createBlock({
1414
displayName: 'Umbrella',
1515
auth: anadotAuth,
1616
minimumSupportedRelease: '0.20.0',
17-
logoUrl: 'https://static.openops.com/blocks/umbrella.png',
17+
logoUrl: '/blocks/umbrella.png',
1818
categories: [BlockCategory.FINOPS],
1919
authors: ['OpenOps'],
2020
actions: [

packages/blocks/anodot/src/lib/anodot-auth-property.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { getAnodotUsers } from './common/users';
55
export const anadotAuth = BlockAuth.CustomAuth({
66
authProviderKey: 'Umbrella',
77
authProviderDisplayName: 'Umbrella',
8-
authProviderLogoUrl: `https://static.openops.com/blocks/umbrella.png`,
8+
authProviderLogoUrl: `/blocks/umbrella.png`,
99
description: 'The authentication to use to connect to Umbrella',
1010
required: true,
1111
props: {

packages/blocks/approval/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const approval = createBlock({
99

1010
auth: BlockAuth.None(),
1111
minimumSupportedRelease: '0.20.0',
12-
logoUrl: 'https://static.openops.com/blocks/approval-block.svg',
12+
logoUrl: '/blocks/approval-block.svg',
1313
authors: ['kishanprmr', 'MoShizzle', 'khaledmashaly', 'abuaboud'],
1414
categories: [BlockCategory.CORE],
1515
actions: [waitForApprovalLink, createApprovalLink],

packages/blocks/archera/src/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Connecting to the Archera API
1818
export const archeraAuth = BlockAuth.CustomAuth({
1919
authProviderKey: 'Archera',
2020
authProviderDisplayName: 'Archera',
21-
authProviderLogoUrl: `https://static.openops.com/blocks/archera.svg`,
21+
authProviderLogoUrl: `/blocks/archera.svg`,
2222
description: markdown,
2323
required: true,
2424
props: {

packages/blocks/archera/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const archera = createBlock({
1313
displayName: 'Archera',
1414
auth: archeraAuth,
1515
minimumSupportedRelease: '0.20.0',
16-
logoUrl: 'https://static.openops.com/blocks/archera.svg',
16+
logoUrl: '/blocks/archera.svg',
1717
categories: [BlockCategory.FINOPS],
1818
authors: ['Archera'],
1919
actions: [

packages/blocks/aws-athena/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const awsAthena = createBlock({
77
displayName: 'AWS Athena',
88
auth: amazonAuth,
99
minimumSupportedRelease: '0.20.0',
10-
logoUrl: 'https://static.openops.com/blocks/aws-athena.png',
10+
logoUrl: '/blocks/aws-athena.png',
1111
categories: [BlockCategory.CLOUD],
1212
authors: [],
1313
actions: [runAthenaQueryAction],

packages/blocks/aws-compute-optimizer/src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import { getRecommendationsSummaryAction } from './lib/actions/get-recommendatio
77

88
export const computeOptimizer = createBlock({
99
displayName: 'AWS Compute Optimizer',
10-
logoUrl:
11-
'https://static.openops.com/blocks/Arch_AWS-Compute-Optimizer_64.svg',
10+
logoUrl: '/blocks/aws-compute-optimizer.svg',
1211
minimumSupportedRelease: '0.8.0',
1312
authors: ['OpenOps'],
1413
categories: [BlockCategory.CLOUD],

packages/blocks/aws/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { ssmGenerateRunbookLinkAction } from './lib/actions/ssm/ssm-generate-run
2727

2828
export const aws = createBlock({
2929
displayName: 'AWS',
30-
logoUrl: 'https://static.openops.com/blocks/aws.png',
30+
logoUrl: '/blocks/aws.png',
3131
minimumSupportedRelease: '0.8.0',
3232
authors: ['OpenOps'],
3333
auth: amazonAuth,

packages/blocks/azure/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const azure = createBlock({
1010
displayName: 'Azure',
1111
auth: azureAuth,
1212
minimumSupportedRelease: '0.20.0',
13-
logoUrl: 'https://static.openops.com/blocks/azure.svg',
13+
logoUrl: '/blocks/azure.svg',
1414
authors: [],
1515
categories: [BlockCategory.CLOUD],
1616
actions: [

0 commit comments

Comments
 (0)