OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/lib/api/v3/work_packages/update_end_point.rb

13 lines
248 B

module API
module V3
module WorkPackages
class UpdateEndPoint < API::V3::Utilities::Endpoints::Update
def present_success(current_user, call)
call.result.reload
super
end
end
end
end
end