Commit 55da5164 authored by David Surville's avatar David Surville
Browse files

Fusion brnache 5.x dans release/1.3.0 : intégration des périmètres

parent 13c487a7
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -57,6 +57,8 @@ return [
             */
            'ldap' => [
                'enabled' => true,

                'username' => "supannAliasLogin",
            ],
        ],

+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ CREATE TABLE UNICAEN_ROLE (
  ID                      NUMBER(*,0)     NOT NULL,
  ROLE_ID                 VARCHAR2(64)    NOT NULL,
  LIBELLE                 VARCHAR2(255)   NOT NULL,
  DESCRIPTION             CLOB            NOT NULL,
  IS_DEFAULT              NUMBER(1)       DEFAULT 0 NOT NULL,
  IS_AUTO                 NUMBER(1)       DEFAULT 0 NOT NULL,
  PARENT_ID               NUMBER(*,0),
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ CREATE TABLE UNICAEN_ROLE (
  ID                    SERIAL        PRIMARY KEY,
  ROLE_ID               VARCHAR(64)   NOT NULL,
  LIBELLE               VARCHAR(255)  NOT NULL,
  DESCRIPTION           TEXT          NOT NULL,
  IS_DEFAULT            BOOLEAN       DEFAULT false NOT NULL,
  IS_AUTO               BOOLEAN       DEFAULT false NOT NULL,
  PARENT_ID             INTEGER,
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

namespace UnicaenAuthentification\Authentication;

use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;
use Laminas\Mvc\Application;
use Laminas\Router\RouteInterface;
use Laminas\ServiceManager\FactoryInterface;
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

namespace UnicaenAuthentification\Authentication\Storage;

use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;
use Laminas\Authentication\Storage\Session;
use Laminas\Session\Exception\RuntimeException;
use Laminas\Session\SessionManager;
Loading