From a76d99b29cb33e569f14210648daf74db2ee051a Mon Sep 17 00:00:00 2001 From: Awilum Date: Sun, 24 May 2020 20:05:12 +0300 Subject: [PATCH] refactor(core): move Access API in the it is own endpoint folder --- src/flextype/bootstrap.php | 1 + src/flextype/endpoints/access/access.php | 21 +++++++++++++++++++ src/flextype/endpoints/management/entries.php | 8 ------- 3 files changed, 22 insertions(+), 8 deletions(-) create mode 100644 src/flextype/endpoints/access/access.php diff --git a/src/flextype/bootstrap.php b/src/flextype/bootstrap.php index 78129231..3454c915 100755 --- a/src/flextype/bootstrap.php +++ b/src/flextype/bootstrap.php @@ -128,6 +128,7 @@ include_once 'dependencies.php'; /** * Include API ENDPOINTS */ +include_once 'endpoints/access/access.php'; include_once 'endpoints/delivery/entries.php'; include_once 'endpoints/delivery/registry.php'; include_once 'endpoints/delivery/config.php'; diff --git a/src/flextype/endpoints/access/access.php b/src/flextype/endpoints/access/access.php new file mode 100644 index 00000000..5c426264 --- /dev/null +++ b/src/flextype/endpoints/access/access.php @@ -0,0 +1,21 @@ +