Skip to content

Commit 8c521b7

Browse files
feat: add mdb rules implementation (#1267)
<!-- Please use this template for your pull request. --> <!-- Please use the sections that you need and delete other sections --> ## This PR <!-- add the description of the PR here --> - adds the mongodb + rules provider ### Related Issues <!-- add here the GitHub issue that this PR resolves if applicable --> Does #1246,
1 parent 685bd82 commit 8c521b7

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

src/datasets/providers/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import { Goff } from './goff';
1414
import { Harness } from './harness';
1515
import { Kameleoon } from './kameleoon';
1616
import { LaunchDarkly } from './launchdarkly';
17+
import { MDBRules } from './mdb-rules';
1718
import { PostHog } from './posthog';
1819
import { Reflag } from './reflag';
1920
import { Split } from './split';
@@ -65,6 +66,7 @@ export const PROVIDERS: Provider[] = [
6566
Hypertune,
6667
Kameleoon,
6768
LaunchDarkly,
69+
MDBRules,
6870
PostHog,
6971
Reflag,
7072
Split,
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import MDBRulesSvg from '@site/static/img/mdb-rules-no-fill.svg';
2+
import { Provider } from '.';
3+
4+
export const MDBRules: Provider = {
5+
name: 'MongoDB + Rules',
6+
logo: MDBRulesSvg,
7+
technologies: [
8+
{
9+
technology: 'Go',
10+
vendorOfficial: false,
11+
href: 'https://github.com/ZackarySantana/mongo-openfeature-go',
12+
category: ['Server'],
13+
},
14+
],
15+
};

static/img/mdb-rules-no-fill.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)