Merged
Conversation
Owner
|
What would be the key ? The path ? If so, I'd pass a list of path so that it's ready for future implementations of custom entities |
Collaborator
Author
|
I would pair the path to the key in |
Owner
|
Yes, we could use it with a fixed key. What do you think in pairing the key with a list of paths (for future custom entities) ? |
infeeeee
commented
Mar 2, 2024
Collaborator
Author
|
I just pushed a new commit, I had to change some parts in Configurator as well for this to work. It will make the whole Configurator workflow much easier, by having the same class a lot of duplicate methods in Configurator can be merged, but that's for the next PR. |
infeeeee
commented
Mar 2, 2024
infeeeee
commented
Mar 2, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
MyApp.App.getRootPath(): Returns the absolute filepath of the installation. It can be useful at other situations in the future.Question to @richibrics:
The 2 subclasses of ClassManager became really short. Maybe they could be replaced by something like this:
EntityClassManager()=ClassManager(KEY_ENTITIES)WarehouseClassManager()=ClassManager(KEY_WAREHOUSES)Because these subclasses are differ only by the base path, and I don't really see how they can change in the future.
What do you think of this?