angelakuo/citydogshare

View on GitHub
app/models/location.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Location < ActiveRecord::Base
  has_many :events

  def self.all_values
      Location.pluck('value')
  end
end