Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added logo for 'tnc' platform, added color for distribution bar in Re… #1582

Merged
merged 3 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions frontend/public/icons/crowd-icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/public/images/integrations/custom/tnc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions frontend/src/integrations/custom/cvent/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ export default {
name: 'cvent',
image: '/images/integrations/custom/cvent.png',
enabled: true,
chartColor: '#199AE0',
url: () => null,
};
1 change: 1 addition & 0 deletions frontend/src/integrations/custom/lfx/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ export default {
name: 'lfx',
image: '/images/integrations/custom/lfx.png',
enabled: true,
chartColor: '#003764',
url: () => null,
};
7 changes: 7 additions & 0 deletions frontend/src/integrations/custom/tnc/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default {
name: 'tnc',
image: '/images/integrations/custom/tnc.png',
enabled: true,
chartColor: '#9FD0CB',
url: () => null,
};
3 changes: 3 additions & 0 deletions frontend/src/integrations/custom/tnc/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import config from './config';

export default config;
2 changes: 2 additions & 0 deletions frontend/src/integrations/integrations-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import n8n from './n8n';
import lfx from './custom/lfx';
import groupsio from './groupsio';
import cvent from './custom/cvent';
import tnc from './custom/tnc';

class IntegrationsConfig {
get integrations() {
Expand Down Expand Up @@ -98,6 +99,7 @@ class IntegrationsConfig {
return {
lfx,
cvent,
tnc,
};
}
}
Expand Down
Loading