-
Notifications
You must be signed in to change notification settings - Fork 3
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
Create CAN History GET endpoint #3288
Conversation
class CANHistoryItemSchema(Schema): | ||
id = fields.Integer(required=True) | ||
can_id = fields.Integer(required=True) | ||
ops_event_id = fields.Integer(required=True) |
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.
should we add/update the openAPI spec to match?
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.
I suppose it probably wouldn't hurt
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.
Done
🎉 This PR is included in version 1.24.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
What changed
Creating /can-history endpoint so users can retrieve the history of all actions performed on can. Adding test data to the database so that the can history can be interacted with from the front end in dev environments before any can history events have been triggered.
Issue
OPS-3276
How to test
Run all tests
Definition of Done Checklist