We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e229e8e commit 073eff0Copy full SHA for 073eff0
packages/app/src/app/store/modules/profile/model.js
@@ -2,7 +2,15 @@ import { types } from 'mobx-state-tree';
2
3
const Sandbox = types.model({
4
forkCount: types.number,
5
- git: types.maybe(types.string),
+ git: types.maybe(
6
+ types.model({
7
+ username: types.string,
8
+ repo: types.string,
9
+ path: types.maybe(types.string),
10
+ commitSha: types.string,
11
+ branch: types.string,
12
+ })
13
+ ),
14
id: types.string,
15
insertedAt: types.string,
16
likeCount: types.number,
0 commit comments