Commit f888a6db authored by allison.browne's avatar allison.browne

Add zoom meeting scope to issues

parent f1f8ff31
......@@ -65,6 +65,7 @@ class Issue < ApplicationRecord
scope :public_only, -> { where(confidential: false) }
scope :confidential_only, -> { where(confidential: true) }
scope :with_zoom_meetings, -> { joins(:zoom_meetings) }
after_commit :expire_etag_cache
after_save :ensure_metrics, unless: :imported?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment