Sha256: a5fe1f7f551da0c21932ddc462ddec022cfbc81a41f82dc49ea84fe0962a445f

Contents?: true

Size: 288 Bytes

Versions: 3

Compression:

Stored size: 288 Bytes

Contents

module Moneytree
  module Oauth
    class SquareController < Moneytree::ApplicationController
      def new
        redirect_to current_account.oauth_link
      end

      def callback
        current_account.oauth_callback(params)
        render text: 'Boom'
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
moneytree-rails-0.1.11 app/controllers/moneytree/oauth/square_controller.rb
moneytree-rails-0.1.10 app/controllers/moneytree/oauth/square_controller.rb
moneytree-rails-0.1.9 app/controllers/moneytree/oauth/square_controller.rb