projects
/
cs356-p2-videostore.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Many visual tweaks, suggested by Lan
[cs356-p2-videostore.git]
/
app
/
models
/
rentable.rb
1
class Rentable < ActiveRecord::Base
2
has_many :coitems
3
has_many :rentable_purchases
4
5
validates_presence_of :title
6
# don't validate newrelease, false is ok
7
8
def checkedout?
9
return Coitem.find_by_rentable_id(self.id) ? true : false
10
end
11
end