debian-mirror-gitlab/app/components/diffs/base_component.rb

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

11 lines
276 B
Ruby
Raw Normal View History

2022-06-21 17:19:12 +05:30
# frozen_string_literal: true
module Diffs
class BaseComponent < ViewComponent::Base
# To make converting the partials to components easier,
# we delegate all missing methods to the helpers,
# where they probably are.
delegate_missing_to :helpers
end
end