@gooddata/api-client-bear
Version:
API Client for the GoodData platform
15 lines • 389 B
JavaScript
// (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