Skip to content

Commit f407764

Browse files
committed
Adding app scaffolding for zenedu
1 parent 98c8f81 commit f407764

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

components/zenedu/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/zenedu",
3+
"version": "0.0.1",
4+
"description": "Pipedream Zenedu Components",
5+
"main": "zenedu.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"zenedu"
9+
],
10+
"homepage": "https://pipedream.com/apps/zenedu",
11+
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/zenedu/zenedu.app.mjs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "zenedu",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

pnpm-lock.yaml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)