gitlab-org--gitlab-foss/app/helpers/json_helper.rb

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

15 lines
343 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
module JsonHelper
# These two JSON helpers are short-form wrappers for the Gitlab::Json
# class, which should be used in place of .to_json calls or calls to
# the JSON class.
def json_generate(*args)
Gitlab::Json.generate(*args)
end
def json_parse(*args)
Gitlab::Json.parse(*args)
end
end