applied my changes - initial import
[boxroom-stian.git] / app / models / clipboard.rb
blob34453f1ed87ad002b6bbddf5873685f30dcdfb50
1 class Clipboard < ActiveRecord::Base
2   belongs_to :myfile
3   belongs_to :user
4   belongs_to :folder
6   # Initialize clipboard object.
7   # We're starting with an empty clipboard:
8   # the @folders and @files arrays are empty too.
10   # Put given folder on clipboard
11   # unless it's already there
12   def add_folder(folder)
13     @folders << folder unless @folders.find{ |f| f.id == folder.id }
14   end
16   # Put given file on clipboard
17   # unless it's already there
18   def add_file(file)
19     @files << file unless @files.find{ |f| f.id == file.id }
20   end
21 end