Skip to content

Commit

Permalink
Merge branch 'qa'
Browse files Browse the repository at this point in the history
  • Loading branch information
smeeks committed Aug 9, 2024
2 parents d8c668f + 2062c1d commit 1339f68
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions app/file_handlers/transit_inventory_updates_file_handler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ def process(upload)
event = loader.event
if event.valid?
event.upload = upload
event.creator = upload.user
event.updater = upload.user
event.save
add_processing_message(3, 'success', 'Service Status updated.')
has_new_event = true
Expand Down Expand Up @@ -147,6 +149,8 @@ def process(upload)
event = loader.event
if event.valid?
event.upload = upload
event.creator = upload.user
event.updater = upload.user
event.save
add_processing_message(3, 'success', 'Condition Update added.')
has_new_event = true
Expand Down Expand Up @@ -175,6 +179,8 @@ def process(upload)
event = loader.event
if event.valid?
event.upload = upload
event.creator = upload.user
event.updater = upload.user
event.save
add_processing_message(3, 'success', 'Mileage Update added.')
has_new_event = true
Expand Down
2 changes: 1 addition & 1 deletion lib/transam_transit/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module TransamTransit
VERSION = "2.44.0"
VERSION = "2.45.0"
end

0 comments on commit 1339f68

Please sign in to comment.