contao / manager-bundle

[READ-ONLY] Contao Manager Bundle
GNU Lesser General Public License v3.0
17 stars 10 forks source link

Add FirewallPluginInterface #24

Closed aschempp closed 7 years ago

aschempp commented 7 years ago

Related to https://github.com/contao/manager-bundle/pull/22

Add a new Interface that allows to define the firewall configuration. An array of firewall configuration is passed to the method and the new config is expected.

interface FirewallPluginInterface
{
    /**
     * @return array
     */
    public function getFirewallConfig(array $config);
}

The manager bundle should handle this instead of just loading the security.yml from core-bundle.

aschempp commented 7 years ago

Closed in favor of #31