NYULibraries/gather_content-api

View on GitHub
lib/gather_content/api/me.rb

Summary

Maintainability
A
0 mins
Test Coverage
module GatherContent
  module Api
    class Me < Base
      def initialize; end

      def [](key)
        fetch[key]
      end

    private

      def path
        @path ||= "/me"
      end

      def params; end
    end
  end
end