models: include all int/bool columns as html data attributes by default.

This commit is contained in:
evazion
2020-01-05 22:48:55 -06:00
parent 77935808e2
commit 895199ecfc
38 changed files with 10 additions and 240 deletions

View File

@@ -2,12 +2,4 @@ class NewsUpdate < ApplicationRecord
belongs_to_creator
belongs_to_updater
scope :recent, -> {where("created_at >= ?", 2.weeks.ago).order("created_at desc").limit(5)}
module ApiMethods
def html_data_attributes
[:creator_id, :updater_id]
end
end
include ApiMethods
end