Skip to content

Commit 94be009

Browse files
committed
Sharing Launchdarkly sources
1 parent 0378389 commit 94be009

File tree

4 files changed

+70
-0
lines changed

4 files changed

+70
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import app from "../../launch_darkly_oauth.app.mjs";
2+
import common from "../../../launchdarkly/sources/common/webhook.mjs";
3+
4+
export default {
5+
...common,
6+
props: {
7+
app,
8+
db: "$.service.db",
9+
http: {
10+
type: "$.interface.http",
11+
customResponse: true,
12+
},
13+
},
14+
};
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import common from "../common/webhook.mjs";
2+
import component from "../../../launchdarkly/sources/new-access-token-event/new-access-token-event.mjs";
3+
4+
const {
5+
name, description, type,
6+
} = component;
7+
8+
export default {
9+
...component,
10+
key: "launch_darkly_oauth-new-access-token-event",
11+
version: "0.0.1",
12+
name,
13+
description,
14+
type,
15+
props: {
16+
...common.props,
17+
memberId: {
18+
propDefinition: [
19+
common.props.app,
20+
"memberId",
21+
],
22+
},
23+
},
24+
};
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import common from "../common/webhook.mjs";
2+
import component from "../../../launchdarkly/sources/new-flag-event/new-flag-event.mjs";
3+
4+
const {
5+
name, description, type,
6+
} = component;
7+
8+
export default {
9+
...component,
10+
key: "launch_darkly_oauth-new-flag-event",
11+
version: "0.0.1",
12+
name,
13+
description,
14+
type,
15+
props: common.props,
16+
};
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import common from "../common/webhook.mjs";
2+
import component from "../../../launchdarkly/sources/new-user-event/new-user-event.mjs";
3+
4+
const {
5+
name, description, type,
6+
} = component;
7+
8+
export default {
9+
...component,
10+
key: "launch_darkly_oauth-new-user-event",
11+
version: "0.0.1",
12+
name,
13+
description,
14+
type,
15+
props: common.props,
16+
};

0 commit comments

Comments
 (0)