gitlab-org--gitlab-foss/app/models/snippet_blob.rb

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

38 lines
491 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-04-13 16:47:28 +00:00
class SnippetBlob
include BlobLike
2017-04-13 16:47:28 +00:00
attr_reader :snippet
def initialize(snippet)
@snippet = snippet
end
delegate :id, to: :snippet
def name
snippet.file_name
end
alias_method :path, :name
def size
data.bytesize
end
def commit_id
nil
end
2017-04-13 16:47:28 +00:00
def data
snippet.content
end
def rendered_markup
return unless Gitlab::MarkupHelper.gitlab_markdown?(name)
Banzai.render_field(snippet, :content)
end
end