af83/chouette-core

View on GitHub
app/lib/query/workgroup.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Query
  class Workgroup < Base
    def name(value)
      where(value, :matches, :name)
    end
  end
end