Parmètres service avec SuperAdministrateur
This commit is contained in:
parent
fb34016e43
commit
b1c927177c
@ -534,7 +534,7 @@ class Account extends Scores_Ws_Server
|
|||||||
$this->authenticate();
|
$this->authenticate();
|
||||||
|
|
||||||
// --- Vérification des droits d'utilisation
|
// --- Vérification des droits d'utilisation
|
||||||
if ( $this->User->profil != 'Administrateur' ) {
|
if ( !in_array($this->User->profil, array('Administrateur', 'SuperAdministrateur')) ) {
|
||||||
throw new SoapFault('ERR', "Accès non authorisé");
|
throw new SoapFault('ERR', "Accès non authorisé");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -604,7 +604,7 @@ class Account extends Scores_Ws_Server
|
|||||||
$this->authenticate();
|
$this->authenticate();
|
||||||
|
|
||||||
// --- Vérification des droits d'utilisation
|
// --- Vérification des droits d'utilisation
|
||||||
if ( $this->User->profil != 'Administrateur' ) {
|
if ( !in_array($this->User->profil, array('Administrateur', 'SuperAdministrateur')) ) {
|
||||||
throw new SoapFault('ERR', "Accès non authorisé");
|
throw new SoapFault('ERR', "Accès non authorisé");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user