html-page-content.service: Added missing authorization headers for POST request.
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-admin-portal/trunk@54574 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
6d32a5ad44
commit
65dc971304
|
@ -3,6 +3,7 @@ import { Http, Response, Headers, RequestOptions } from '@angular/http';
|
|||
import { Observable } from 'rxjs/Rx';
|
||||
import {COOKIE} from "../../openaireLibrary/login/utils/helper.class"
|
||||
import { HtmlPageContent } from "../../domain/html-page-content";
|
||||
import { CustomOptions } from '../../openaireLibrary/services/servicesUtils/customOptions.class';
|
||||
|
||||
@Injectable()
|
||||
export class HtmlPageContentService {
|
||||
|
@ -25,12 +26,13 @@ export class HtmlPageContentService {
|
|||
}
|
||||
|
||||
updateHtmlPageContent(htmlPageContent: HtmlPageContent, adminToolsAPIURL:string) {
|
||||
let headers = new Headers({'Content-Type': 'application/json'});
|
||||
let options = new RequestOptions({headers: headers});
|
||||
//let headers = new Headers({'Content-Type': 'application/json'});
|
||||
//let options = new RequestOptions({headers: headers});
|
||||
|
||||
HtmlPageContentService.removeNulls(htmlPageContent);
|
||||
|
||||
return this.http.post(adminToolsAPIURL + 'htmlpagecontent/update', JSON.stringify(htmlPageContent), options)
|
||||
return this.http.post(adminToolsAPIURL + 'htmlpagecontent/update', JSON.stringify(htmlPageContent), CustomOptions.getAuthOptionsWithBody())
|
||||
//return this.http.post(adminToolsAPIURL + 'htmlpagecontent/update', JSON.stringify(htmlPageContent), options)
|
||||
.map(res => <HtmlPageContent> res.json())
|
||||
.catch(this.handleError);
|
||||
}
|
||||
|
|
|
@ -18,8 +18,8 @@ export class ManageUserNotificationsService {
|
|||
}
|
||||
|
||||
updateUserNotifications(url: string, userNotificationsRights: any) {
|
||||
let headers = new Headers({'Content-Type': 'application/json'});
|
||||
let options = new RequestOptions({headers: headers});
|
||||
//let headers = new Headers({'Content-Type': 'application/json'});
|
||||
//let options = new RequestOptions({headers: headers});
|
||||
let body = JSON.stringify(userNotificationsRights);
|
||||
|
||||
console.log(body);
|
||||
|
|
Loading…
Reference in New Issue