mirror of
https://github.com/anikeen-com/id.git
synced 2026-03-17 07:36:12 +00:00
first commit
This commit is contained in:
16
src/Id/Enums/Scope.php
Normal file
16
src/Id/Enums/Scope.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Anikeen\Id\Enums;
|
||||
|
||||
class Scope
|
||||
{
|
||||
const USER = 'user';
|
||||
const USER_READ = 'user:read';
|
||||
const ORDERS = 'orders';
|
||||
const ORDERS_READ = 'orders:read';
|
||||
const PRODUCTS = 'products';
|
||||
const PRODUCTS_READ = 'products:read';
|
||||
const BILLING = 'billing';
|
||||
const BILLING_READ = 'billing:read';
|
||||
const ADMIN = 'admin';
|
||||
}
|
||||
Reference in New Issue
Block a user