accescible_app/app/models/cible/cible_folder.rb
Nicolas Bally d4484275e8 initial
2011-06-25 12:08:06 +02:00

14 lines
223 B
Ruby

# -*- encoding : utf-8 -*-
class CibleFolder < ActiveRecord::Base
include Rails.application.routes.url_helpers
belongs_to :folder
def url
if self.folder
folder_path(:slug => self.folder.slug)
end
end
end