# frozen_string_literal: true module OpenRecycling module Org class Organizations < OpenRecycling::Resource def initialize(base_url: nil, jwt_token: nil) super( root_node_singular: "organization", root_node_plural: "organizations", api_url: "#{base_url}/organizations", jwt_token: jwt_token ) end end end end