boissier_app/app/models/cible/cible_folder.rb
Nicolas Bally 6abf7679fd initial
2011-05-14 13:36:30 +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