Skip to content

Commit

Permalink
[UPD] organizations
Browse files Browse the repository at this point in the history
  • Loading branch information
Viglino committed Apr 4, 2024
1 parent d9a9417 commit d3878d5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion api/organization.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ class Organization extends ol_Object {
* @param {Object} [orga]
*/
set(orga) {
console.log(orga)
if (orga && orga.organization_id) {
_organization = orga;
} else {
Expand All @@ -52,6 +51,12 @@ class Organization extends ol_Object {
getImage() {
return _organization.organization_image || ''
}
/** Get organization info
* @return {string}
*/
getPresentation() {
return _organization.organization_presentation || ''
}
/** Get organization id
* @return {string}
*/
Expand Down

0 comments on commit d3878d5

Please sign in to comment.