Skip to content
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
4 changes: 4 additions & 0 deletions frontend/src/assets/images/identities/mailing-list.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions frontend/src/config/identities/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import hackernews from './hackernews/config';
import jira from './jira/config';
import lfid from './lfx/config';
import linkedin from './linkedin/config';
import mailinglist from './mailinglist/config';
import n8n from './n8n/config';
import reddit from './reddit/config';
import slack from './slack/config';
Expand Down Expand Up @@ -63,6 +64,7 @@ export const lfIdentities: Record<string, IdentityConfig> = {
discourse,
git,
groupsio,
mailinglist,
confluence,
gerrit,
jira,
Expand Down
20 changes: 20 additions & 0 deletions frontend/src/config/identities/mailinglist/config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { IdentityConfig } from '@/config/identities';

const image = new URL(
'@/assets/images/identities/mailing-list.svg',
import.meta.url,
).href;

const mailinglist: IdentityConfig = {
key: 'mailinglist',
name: 'Mailing List',
image,
member: {
placeholder: 'Mailing list email address',
},
activity: {
showLink: true,
},
};

export default mailinglist;
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ export default [
Platform.HUBSPOT,
Platform.GIT,
Platform.GROUPS_IO,
Platform.MAILING_LIST,
Platform.CUSTOM,
];
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ export default [
Platform.HUBSPOT,
Platform.GIT,
Platform.GROUPS_IO,
Platform.MAILING_LIST,
Platform.CUSTOM,
];
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ export default [
Platform.HUBSPOT,
Platform.GIT,
Platform.GROUPS_IO,
Platform.MAILING_LIST,
Platform.CUSTOM,
];
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ export default [
Platform.TWITTER,
Platform.CRUNCHBASE,
Platform.HUBSPOT,
Platform.MAILING_LIST,
Platform.CUSTOM,
];
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ export default [
Platform.TWITTER,
Platform.CRUNCHBASE,
Platform.HUBSPOT,
Platform.MAILING_LIST,
Platform.CUSTOM,
];
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ export default [
Platform.TWITTER,
Platform.CRUNCHBASE,
Platform.HUBSPOT,
Platform.MAILING_LIST,
Platform.CUSTOM,
];
1 change: 1 addition & 0 deletions frontend/src/shared/modules/platform/types/Platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export enum Platform {
HUBSPOT = 'hubspot',
GIT = 'git',
GROUPS_IO = 'groupsio',
MAILING_LIST = 'mailinglist',
Comment thread
gaspergrom marked this conversation as resolved.
CUSTOM = 'custom',
ENRICHMENT = 'enrichment',
EMAIL = 'email',
Expand Down
Loading