Skip to content

Commit

Permalink
fix(settings/media-repurposing): review send notification to owner fi…
Browse files Browse the repository at this point in the history
…x KMCNG-2622
  • Loading branch information
amirch1 committed May 16, 2024
1 parent e66e398 commit cf2d15f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export class MrStoreService implements OnDestroy {
}
}

public notifyOwners(ids: string[], textBody: string, subject: string): Observable<any> {
public notifyOwners(ids: string[], subject: string, textBody: string): Observable<any> {
try {
return this._http.post(`${serverConfig.externalServices.mrEndpoint.uri}/objectState/notifyOwners`, {ids, textBody, subject}, this.getHttpOptions()).pipe(cancelOnDestroy(this)) as Observable<any>;
} catch (ex) {
Expand Down

0 comments on commit cf2d15f

Please sign in to comment.