gitlab-org--gitlab-foss/app/services/base_renderer.rb

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

10 lines
159 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class BaseRenderer
attr_reader :current_user
def initialize(current_user = nil)
@current_user = current_user
end
end