af83/chouette-core

View on GitHub
app/lib/workbench_scopes/all.rb

Summary

Maintainability
A
0 mins
Test Coverage
module WorkbenchScopes
  class All
    attr_accessor :workbench

    def initialize(workbench)
      @workbench = workbench
    end

    def lines_scope(initial_scope)
      initial_scope
    end

    def stop_areas_scope(initial_scope)
      initial_scope
    end
  end
end