Add method to Photo needed for check_box.

The _delete method tell rails that the delete checkbox must be
unchecked at first.
master
Rémi Vanicat 2010-11-17 17:50:25 +01:00
parent 4c3dbcecb6
commit e40340e3f4
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,10 @@ class Photo < ActiveRecord::Base
end
self.tags = ts
end
def _delete
0
end
protected