20 lines
729 B
TypeScript
20 lines
729 B
TypeScript
|
import { RequestOptions, Headers} from '@angular/http';
|
||
|
import { COOKIE } from '../../../login/utils/helper.class';
|
||
|
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|