mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
333beb2198
Previously, the exports were somewhat random with some files declaring local variables then immediately exporting them, and others simply doing the work needed in the export itself.
14 lines
438 B
JavaScript
14 lines
438 B
JavaScript
var CSRFTokenInitializer = {
|
|
name: 'csrf-token',
|
|
|
|
initialize: function (container) {
|
|
container.register('csrf:token', $('meta[name="csrf-param"]').attr('content'), { instantiate: false });
|
|
|
|
container.injection('route', 'csrf', 'csrf:token');
|
|
container.injection('model', 'csrf', 'csrf:token');
|
|
container.injection('controller', 'csrf', 'csrf:token');
|
|
}
|
|
};
|
|
|
|
export default CSRFTokenInitializer;
|