Replies: 1 comment 2 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
A feature that lets end users able to edit the name of the dispatch via the UI on the frontend. Since we are implementing sub-lattices feature, the naming will be easily identified between normal lattice and sub lattice.
Impacted components
Impacted files
covalent/_data_store/models.py
a. To modify for adding the new column
b. Alembic configuration will pick the db reference from here
covalent/_results_manager/result.py
a. Modification to Json data before sending to the database
covalent/_results_manager/write_result_to_db.py
a. save and commit the data to db
covalent_ui/api/v1/database/schema/lattices.py
a. Contains the db schema, similar to that in covalent/data_store/models.py
b. Adding a column, will required to be modified in both lattices.py ( managed by Team Psi ) as well as data_store/models.py ( managed by Team AQ )
covalent_ui/api/v1/database/models/lattices_model.py
a. Serves a query model to the lattice data layer
covalent_ui/api/v1/routes/endpoints/lattice_route.py
a. Add new API(s) to handle user input for dispatch_name
b. Existing API(s) to handle the modification of the schema and model for the new column ( dispatch_name )
Roadmap for backend component
Pending decisions
Can we prefix the dispatch_name column for all the sub-lattices with the word, ":sublattice"? For instance, ":sublattice-get_info"
Beta Was this translation helpful? Give feedback.
All reactions