Skip to content

Commit 781a064

Browse files
authored
feat: Add FFlags to the OFREP API section (#1268)
<!-- 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 FFlags to the OFREP API section in Ecosystem --------- Signed-off-by: Tushar Choudhari <[email protected]>
1 parent 11ab9d3 commit 781a064

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

src/datasets/ofrep-api/fflags.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import FFlagsSvg from '@site/static/img/fflags-no-fill.svg';
2+
import { OFREP_API } from '.';
3+
4+
export const FFlags: OFREP_API = {
5+
name: 'FFlags',
6+
logo: FFlagsSvg,
7+
href: 'https://fflags.com',
8+
vendorOfficial: true,
9+
description: 'FFlags is completely based on the OFREP API specification.',
10+
};

src/datasets/ofrep-api/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ import { Goff } from './goff';
55
import { Flipt } from './flipt';
66
import { Flagd } from './flagd';
77
import { ConfigCat } from './configcat';
8+
import { FFlags } from './fflags';
89
export type OFREPElement = Omit<EcosystemElement, 'allTechnologies' | 'technology' | 'category'>;
910

10-
export const ECOSYSTEM_OFREP_APIS: OFREPElement[] = [DevCycle, Flipt, Goff, Flagd, ConfigCat]
11+
export const ECOSYSTEM_OFREP_APIS: OFREPElement[] = [ConfigCat, DevCycle, Flagd, FFlags, Flipt, Goff]
1112
.map(
1213
(api): OFREPElement => ({
1314
vendor: api.name,

static/img/fflags-no-fill.svg

Lines changed: 6 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)