gitlab-org--gitlab-foss/config/routes/google_api.rb

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

10 lines
192 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-10-11 06:49:55 +00:00
scope '-' do
namespace :google_api do
resource :auth, only: [], controller: :authorizations do
match :callback, via: [:get, :post]
end
end
end