2017-12-19 13:53:46 +01:00
|
|
|
import { RequestOptions, Headers} from '@angular/http';
|
2018-11-08 14:49:40 +01:00
|
|
|
import { COOKIE } from '../../login/utils/helper.class';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
export class CustomOptions{
|
|
|
|
public static getAuthOptionsWithBody():RequestOptions{
|
|
|
|
let headers = new Headers();
|
|
|
|
headers.append('Content-Type', 'application/json');
|
|
|
|
headers.append('X-XSRF-TOKEN', COOKIE.getCookie(COOKIE.cookieName_id));
|
|
|
|
let options = new RequestOptions({ headers: headers, withCredentials:true });
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
public static getAuthOptions():RequestOptions{
|
|
|
|
let headers = new Headers();
|
|
|
|
headers.append('X-XSRF-TOKEN', COOKIE.getCookie(COOKIE.cookieName_id));
|
|
|
|
let options = new RequestOptions({ headers: headers, withCredentials:true });
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
}
|