UNPKG

@gooddata/api-client-bear

Version:
15 lines 389 B
// (C) 2022 GoodData Corporation export class OrganizationModule { xhr; constructor(xhr) { this.xhr = xhr; } /** * Get current user's organization * @returns resolves with current user's organization */ getCurrentOrganization() { return this.xhr.getParsed("/gdc/app/organization/current"); } } //# sourceMappingURL=organization.js.map