module Bearcat
  class Client < Footrest::Client
    module Roles

      def roles(account_id='self', params={})
        get("/api/v1/accounts/#{account_id}/roles", params)
      end

      def role(role_id, account_id='self', params={})
        get("/api/v1/accounts/#{account_id}/roles/#{role_id}", params)
      end

    end
  end
end