-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Save config in DB #594
Save config in DB #594
Conversation
Deployed to https://test-deployment-pr-594.herokuapp.com/ |
# Conflicts: # src/app/core/view/view.module.ts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
approving this as a first step towards the goal. We need to rework the startup process as soon as possible, though (#595). This is introducing tighter coupling and dependencies at the moment.
uploadConfigFile(file: Blob) { | ||
this.readFile(file) | ||
.then((res) => | ||
this.configService.saveConfig(this.entityMapper, JSON.parse(res)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use dependency injection instead of passing around the dependency here?
|
||
@NgModule({ | ||
declarations: [], | ||
imports: [CommonModule], | ||
imports: [CommonModule, EntityModule], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not necessary if dendency added to configmodule
DeepCode's analysis on #a46cda found:
Top issues
👉 View analysis in DeepCode’s Dashboard | Configure the bot |
see issue: #558
Visible/Frontend Changes
Architectural/Backend Changes