summaryrefslogtreecommitdiff
path: root/app/models/application_setting/term.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/application_setting/term.rb')
-rw-r--r--app/models/application_setting/term.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/models/application_setting/term.rb b/app/models/application_setting/term.rb
new file mode 100644
index 00000000000..e8ce0ccbb71
--- /dev/null
+++ b/app/models/application_setting/term.rb
@@ -0,0 +1,13 @@
+class ApplicationSetting
+ class Term < ActiveRecord::Base
+ include CacheMarkdownField
+
+ validates :terms, presence: true
+
+ cache_markdown_field :terms
+
+ def self.latest
+ order(:id).last
+ end
+ end
+end