This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { runSaga } = require('redux-saga') | |
const { takeEvery, select } = require('redux-saga/effects') | |
const EventEmitter = require('events').EventEmitter | |
// | |
// Create Saga IO: | |
// | |
const createSagaIO = (emitter, getStateResolve) => ({ | |
// this will be used to resolve take Effects | |
subscribe: (callback) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$app['security.firewalls'] = array( | |
'login' => array( | |
'pattern' => '^/login$', | |
'anonymous' => true, | |
), | |
'admin' => array( | |
'pattern' => '^/admin', | |
'form' => array( | |
'login_path' => '/login', | |
'check_path' => '/admin/login_check'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ul.tags { | |
display: inline; | |
margin: 0; | |
padding: 0; | |
} | |
ul.tags li { | |
display: inline; | |
list-style: none; | |
margin: 0; |