summaryrefslogtreecommitdiff
path: root/app/models/work_items/widgets/notifications.rb
blob: 9a13e5ebbeaf73d1d88358dfae434226202a8be5 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module WorkItems
  module Widgets
    class Notifications < Base
      delegate :subscribed?, to: :work_item
    end
  end
end