Inject csrf token into react app

This commit is contained in:
Logan Tegman
2016-05-09 10:13:02 -07:00
parent 921d5b1f55
commit c015cb5ec5
4 changed files with 10 additions and 4 deletions

View File

@@ -18,8 +18,10 @@ import render from '../common/app/utils/render';
const log = debug('fcc:client');
const DOMContainer = document.getElementById('fcc');
const initialState = window.__fcc__.data;
const csrfToken = window.__fcc__.csrf.token;
initialState.app.csrfToken = csrfToken;
const serviceOptions = { xhrPath: '/services' };
const serviceOptions = { xhrPath: '/services', context: { _csrf: csrfToken } };
Rx.config.longStackSupport = !!debug.enabled;
const history = createHistory();