Skip to content

Commit

Permalink
Merge pull request #1165 from ORCID/member-edit-info
Browse files Browse the repository at this point in the history
Member edit info
  • Loading branch information
bobcaprice authored Apr 24, 2024
2 parents d18439f + fd94af1 commit 42af9e6
Show file tree
Hide file tree
Showing 16 changed files with 1,545 additions and 62 deletions.
4 changes: 2 additions & 2 deletions gateway/src/main/webapp/app/entities/member/member.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ export class MSMemberService {
return this.http.delete<any>(`${this.resourceUrl}/members/${id}`, { observe: 'response' });
}

updateMemberDetails(memberDetails: ISFMemberUpdate, salesforceId: string): Observable<HttpResponse<any>> {
return this.http.put(`${this.resourceUrl}/members/${salesforceId}/member-details`, memberDetails, { observe: 'response' });
updateMemberDetails(memberDetails: ISFMemberUpdate, salesforceId: string): Observable<ISFMemberUpdate> {
return this.http.put(`${this.resourceUrl}/members/${salesforceId}/member-details`, memberDetails);
}

getConsortiaLeadName(consortiaLeadId: string): Observable<EntityResponseType> {
Expand Down
5 changes: 4 additions & 1 deletion ui/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@
"src/content/images",
"src/content/css"
],
"styles": ["src/content/scss/global.scss"],
"styles": [
"src/content/scss/global.scss",
"node_modules/quill/dist/quill.snow.css"
],
"scripts": []
},
"configurations": {
Expand Down
Loading

0 comments on commit 42af9e6

Please sign in to comment.