Last active
December 11, 2015 02:09
-
-
Save chewbakartik/4528351 to your computer and use it in GitHub Desktop.
Section of TYPO3 Flow 2.0 beta login controller
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
/** | |
* Injects the security context | |
* | |
* @param \TYPO3\Flow\Security\Context $securityContext The security context | |
* @return void | |
*/ | |
public function injectSecurityContext(\TYPO3\Flow\Security\Context $securityContext) { | |
$this->securityContext = $securityContext; | |
} | |
/** Settings.yaml for security | |
TYPO3: | |
Flow: | |
security: | |
enable: TRUE | |
authentication: | |
authenticationStrategy: oneToken | |
providers: | |
DefaultProvider: | |
provider: PersistedUsernamePasswordProvider |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment