We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently we have _builds nested x2 inside a template.encode() this is not elegant, and makes the editing of a template for a user difficult.
_builds
template.encode()
Instead we should have a single _builds field which combines everything from a Template in one field.
Template
We should repurpose the Component.literals which stops the jobs being deployed on db.apply(template).
Component.literals
db.apply(template)
Outcome
This will make it easier to pass a response to the frontend, and deserialize without custom logic.
/db/show_template
/db/apply
Template.__call__
The text was updated successfully, but these errors were encountered:
blythed
No branches or pull requests
Currently we have
_builds
nested x2 inside atemplate.encode()
this is not elegant, and makes the editing of a template for a user difficult.Instead we should have a single
_builds
field which combines everything from aTemplate
in one field.We should repurpose the
Component.literals
which stops the jobs being deployed ondb.apply(template)
.Outcome
This will make it easier to pass a response to the frontend, and deserialize without custom logic.
/db/show_template
will not be necessary/db/apply
will be simpliedTemplate.__call__
will no longer be necessaryThe text was updated successfully, but these errors were encountered: