mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 02:06:23 +02:00
22 lines
379 B
PHP
22 lines
379 B
PHP
<?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,
|
|
],
|
|
];
|
|
}
|