Renamed domain UserManagement to User

This commit is contained in:
Kevin Frantz
2019-05-30 17:15:50 +02:00
parent 899dede123
commit 6c31b0d9db
20 changed files with 26 additions and 26 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace Infinito\Domain\User;
use Infinito\DBAL\Types\Meta\Right\LayerType;
use Infinito\DBAL\Types\ActionType;
/**
* Containes the standart map.
*
* @author kevinfrantz
*/
interface UserSourceStandartRightMapInterface
{
const LAYER_RIGHT_MAP = [
LayerType::SOURCE => [
ActionType::READ,
ActionType::UPDATE,
],
];
}