Skip to content

Commit

Permalink
Denegar creación y eliminación de usuarios
Browse files Browse the repository at this point in the history
  • Loading branch information
parzibyte committed Jul 2, 2019
1 parent 3ba8854 commit 9c75aba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
9 changes: 9 additions & 0 deletions app/Controladores/ControladorUsuarios.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace Parzibyte\Controladores;

use Parzibyte\Modelos\ModeloUsuarios;
use Parzibyte\Servicios\Comun;

class ControladorUsuarios
{
Expand All @@ -20,12 +21,20 @@ public static function actualizarPalabraSecreta()

public static function agregar()
{
if (Comun::env("DENEGAR_USUARIOS", false)) {
return json(true);
}

$datos = json_decode(file_get_contents("php://input"));
return json(ModeloUsuarios::agregar($datos->correo, $datos->palabraSecreta));
}

public static function eliminar($idUsuario)
{
if (Comun::env("DENEGAR_USUARIOS", false)) {
return json(true);
}

return json(ModeloUsuarios::eliminar($idUsuario));
}

Expand Down
4 changes: 3 additions & 1 deletion app/env.ejemplo.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,6 @@
; el offset sería 3
; si estuviera en https://parzibyte.me/apps/app/index.php
; el offset sería 3
OFFSET_RUTAS = 2
OFFSET_RUTAS = 2
; Denegar la creación o eliminación de usuarios, útil para ambientes de prueba
DENEGAR_USUARIOS=false

0 comments on commit 9c75aba

Please sign in to comment.