We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7128269 + 0bffae9 commit a91394bCopy full SHA for a91394b
.github/workflows/postman.yml
@@ -48,7 +48,12 @@ jobs:
48
ls
49
- name: Start core server
50
run: |
51
+ export NVM_DIR="$HOME/.nvm"
52
+ [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
53
cd apl-core
54
+ nvm install
55
+ nvm use
56
+ node -v
57
npm install
58
npm run server > $GITHUB_WORKSPACE/core.log 2>&1 &
59
- name: Start api
src/otomi-stack.ts
@@ -564,8 +564,7 @@ export default class OtomiStack {
564
this.filterExcludedApp(app)
565
566
if (teamId === 'admin') return app
567
- const adminApp = this.repoService.getTeamConfigService(teamId).getApp(id)
568
- return { ...cloneDeep(app), enabled: adminApp.enabled }
+ return { id: app.id, enabled: app.enabled }
569
}
570
571
getApp(name: string): App {
0 commit comments