diff options
Diffstat (limited to 'app/models/node.rb')
| -rw-r--r-- | app/models/node.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/node.rb b/app/models/node.rb index 4f585e1..70ed4da 100644 --- a/app/models/node.rb +++ b/app/models/node.rb | |||
| @@ -22,6 +22,11 @@ class Node < ApplicationRecord | |||
| 22 | validates_uniqueness_of :slug, :scope => :parent_id, :unless => -> { parent_id.nil? } | 22 | validates_uniqueness_of :slug, :scope => :parent_id, :unless => -> { parent_id.nil? } |
| 23 | validates_presence_of :parent_id, :unless => -> { Node.root.nil? } | 23 | validates_presence_of :parent_id, :unless => -> { Node.root.nil? } |
| 24 | 24 | ||
| 25 | validates :default_template_name, | ||
| 26 | :inclusion => { :in => ->(_) { Page.custom_templates } }, | ||
| 27 | :allow_nil => true, | ||
| 28 | :if => :default_template_name_changed? | ||
| 29 | |||
| 25 | # Class methods | 30 | # Class methods |
| 26 | 31 | ||
| 27 | # Returns a page for a given node. If no revision is supplied, it returns | 32 | # Returns a page for a given node. If no revision is supplied, it returns |
