about summary refs log tree commit diff stats
path: root/app/models/entry.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/entry.rb')
-rw-r--r--app/models/entry.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/app/models/entry.rb b/app/models/entry.rb deleted file mode 100644 index 87fd46d..0000000 --- a/app/models/entry.rb +++ /dev/null
@@ -1,11 +0,0 @@
1class Entry < ApplicationRecord
2 has_many :records, as: :recordable, inverse_of: :recordable
3
4 validates :slug, presence: true, format: /\A[-a-z0-9]+\z/
5
6 accepts_nested_attributes_for :records, allow_destroy: true
7
8 def path
9 "/says/#{slug}"
10 end
11end