debian-mirror-gitlab/app/models/work_items/widgets/notifications.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
158 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# frozen_string_literal: true
module WorkItems
module Widgets
class Notifications < Base
delegate :subscribed?, to: :work_item
end
end
end