gitlabhq/app/models/wiki.rb

48 lines
923 B
Ruby
Raw Normal View History

2012-02-19 15:35:31 +01:00
class Wiki < ActiveRecord::Base
belongs_to :project
2012-02-19 20:52:05 +01:00
belongs_to :user
has_many :notes, as: :noteable, dependent: :destroy
2012-02-19 15:35:31 +01:00
validates :content, :title, :user_id, presence: true
validates :title, length: 1..250
2012-02-19 15:35:31 +01:00
2012-02-19 18:05:35 +01:00
before_update :set_slug
2012-02-19 15:35:31 +01:00
def to_param
slug
end
protected
def set_slug
self.slug = self.title.parameterize
end
2012-02-19 18:05:35 +01:00
class << self
def regenerate_from wiki
regenerated_field = [:slug, :content, :title]
new_wiki = Wiki.new
regenerated_field.each do |field|
new_wiki.send("#{field}=", wiki.send(field))
end
new_wiki
end
end
2012-02-19 15:35:31 +01:00
end
2012-02-28 14:09:23 +01:00
# == Schema Information
#
# Table name: wikis
#
2012-06-26 20:23:09 +02:00
# id :integer(4) not null, primary key
2012-02-28 14:09:23 +01:00
# title :string(255)
# content :text
2012-06-26 20:23:09 +02:00
# project_id :integer(4)
2012-02-28 14:09:23 +01:00
# created_at :datetime not null
# updated_at :datetime not null
# slug :string(255)
2012-06-26 20:23:09 +02:00
# user_id :integer(4)
2012-02-28 14:09:23 +01:00
#