Add searching to the games controller
[cs356-p2-videostore.git] / app / models / game.rb
1 class Game < Rentable
2   validates_presence_of :game_genre
3   validates_presence_of :platform
4
5   def checkedout?
6     return Coitem.find_by_id(self.id) ? true : false
7   end
8 end