af83/chouette-core

View on GitHub
app/services/shapes/update.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Shapes
  class Update < Shapes::Create

    def call
      super { shape.waypoints.destroy_all }
    end

    private

    def shape
      @shape ||= journey_pattern.shape
    end
  end
end