jbox-web/redmine_git_hosting

View on GitHub
app/services/redmine_hooks/http_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module RedmineHooks
  module HttpHelper
    def http_post(url, **opts)
      RedmineGitHosting::Utils::Http.http_post url, **opts
    end

    def http_get(url, **opts)
      RedmineGitHosting::Utils::Http.http_get url, **opts
    end
  end
end