-
Notifications
You must be signed in to change notification settings - Fork 1
Arm enhancement #26
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
Closed
Closed
Arm enhancement #26
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
459e78c
Updated docstrings for endpoints & included in documentation
pendingintent ca7e46d
Reordered object lists
pendingintent a17ef28
Merge branch 'ui-layout' into update-endpoints
pendingintent 672df4a
Added docs for 2 new endpoints for viewing categories
pendingintent 0318e3f
Added concept category cache and corresponding tests
pendingintent ab410d2
Arm type now chosen from dropdown from codelist C174222
pendingintent 7ecf23f
Commented out arm.type debug
pendingintent 9b5c8ec
Added arm type and dataTypeOrigin properties and auditing
pendingintent 6240e8e
Removed temp shared memory and write-ahead logging database files fro…
pendingintent b597523
Added temp shared memory and write-ahead logging to sqlite db
pendingintent 31582eb
Arm audit added to edit.html
pendingintent e66ad60
Arm create includes type & data_origin_type
pendingintent 211eaa7
Update src/soa_builder/web/initialize_database.py
pendingintent 65309ac
Update src/soa_builder/web/app.py
pendingintent 7f09a34
Update src/soa_builder/web/app.py
pendingintent 12dcc0e
Update src/soa_builder/web/app.py
pendingintent b7909b3
Added helper _get_next_code_uid and refactor
pendingintent cb79e60
Moved _get_next_code_uid to utils.py and removed duplicate logic for …
pendingintent dd2aceb
Removed cross-site and scripting vulnerabilities
pendingintent 7967c11
Update tests/test_code_uid_generation.py
pendingintent 76d8ee2
Removed unused import
pendingintent 44df93f
Merge branch 'arm-enhancement' of https://github.com/pendingintent/so…
pendingintent File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Binary file not shown.
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
Oops, something went wrong.
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.
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.
[nitpick] The variable 'activity_name' was removed but 'a_idx' is still present in the enumerate(). If 'activity_name' is truly unused, consider also removing 'a_idx' or using '_' for the unused index variable:
for _, r in enumerate(rows, start=1):