debian-mirror-gitlab/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 Normal View History

2023-01-13 00:05:48 +05:30
# 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