Browse Source

Edit to brand and model models

denney-disable-on-select
Jason Denney 12 years ago
parent
commit
2876a20148
  1. 6
      app/models/bike_brand.rb
  2. 8
      app/models/bike_model.rb

6
app/models/bike_brand.rb

@ -1,5 +1,5 @@
class BikeBrand < ActiveRecord::Base class BikeBrand < ActiveRecord::Base
attr_accessible :name attr_accessible :brand
has_many :bikes has_many :bikes
has_many :bike_models has_many :bike_models
@ -9,4 +9,8 @@ class BikeBrand < ActiveRecord::Base
def models def models
self.bike_models self.bike_models
end end
def to_s
self.brand
end
end end

8
app/models/bike_model.rb

@ -1,10 +1,16 @@
class BikeModel < ActiveRecord::Base class BikeModel < ActiveRecord::Base
attr_accessible :name attr_accessible :model
has_many :bikes has_many :bikes
belongs_to :bike_brand belongs_to :bike_brand
self.per_page = 15
def brand def brand
self.bike_brand self.bike_brand
end end
def to_s
self.model
end
end end

Loading…
Cancel
Save