Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Eclipse Foundation
IT
Websites
membership.eclipse.org
Commits
b1da1274
Commit
b1da1274
authored
Jan 18, 2022
by
Martin Lowe
🇨🇦
Browse files
Remove usage of short description in the organization info update call
parent
6f4d18dd
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/eclipsefoundation/react/resources/OrganizationResource.java
View file @
b1da1274
...
...
@@ -171,7 +171,6 @@ public class OrganizationResource extends AbstractRESTResource {
infoRef
=
infoRefs
.
get
(
0
);
}
infoRef
.
setCompanyUrl
(
updateRequest
.
getCompanyUrl
());
infoRef
.
setShortDescription
(
updateRequest
.
getDescription
());
infoRef
.
setLongDescription
(
updateRequest
.
getDescription
());
// update the org info
...
...
src/main/java/org/eclipsefoundation/react/service/impl/FoundationDBOrganizationService.java
View file @
b1da1274
...
...
@@ -345,7 +345,6 @@ public class FoundationDBOrganizationService implements OrganizationsService {
// retrieve the descriptions of the organization
MemberOrganizationDescription
.
Builder
desc
=
MemberOrganizationDescription
.
builder
();
desc
.
setLongDescription
(
info
.
getLongDescription
());
desc
.
setShortDescription
(
info
.
getShortDescription
());
out
.
setDescription
(
desc
.
build
());
out
.
setWebsite
(
info
.
getCompanyUrl
());
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment