diff options
author | David Yip <yipdw@member.fsf.org> | 2018-05-04 03:23:57 -0500 |
---|---|---|
committer | David Yip <yipdw@member.fsf.org> | 2018-05-04 03:23:57 -0500 |
commit | da70208b452bf751af92128ec46eea9707e1e6a9 (patch) | |
tree | d969e5e6092b5cd00ca8db5b12f83130dec4a010 /app/models | |
parent | 2d392fb3b80c04df5c575d72e4f7424a84909300 (diff) | |
parent | c61ddd82495f8997fc3034faa8281165f553280c (diff) |
Merge remote-tracking branch 'origin/master' into merge-upstream
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/status.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index 44238ca6b..0b3a7c0aa 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -33,6 +33,10 @@ class Status < ApplicationRecord include Cacheable include StatusThreadingConcern + # If `override_timestamps` is set at creation time, Snowflake ID creation + # will be based on current time instead of `created_at` + attr_accessor :override_timestamps + update_index('statuses#status', :proper) if Chewy.enabled? enum visibility: [:public, :unlisted, :private, :direct], _suffix: :visibility |