Added self-destructing/expiring statuses

• Added:
- self-destructing/expiring statuses for GabPRO members only
- ExpiringStatusWorker
- stopwatch icon
- expires_at redux values
- expires_at button in composer
- expires at selection popover

• Updated:
- Schedule status button to not show if expiring status active
This commit is contained in:
mgabdev
2020-07-24 19:05:31 -05:00
parent 5f4e7aad31
commit 043fc01cea
16 changed files with 341 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
# frozen_string_literal: true
class ExpiringStatusWorker
include Sidekiq::Worker
sidekiq_options unique: :until_executed
def perform(status_id)
status = Status.find(status_id)
RemovalWorker.perform_async(status.id)
rescue ActiveRecord::RecordNotFound
true
end
end