25 lines
640 B
PHP
25 lines
640 B
PHP
<?php
|
|
// require __DIR__ . "/vendor/autoload.php";
|
|
$dir = dirname( __DIR__, 3 );
|
|
|
|
$path = $dir . "/admin/core/api/php/includes/init.php";
|
|
require $path;
|
|
$router = new AppfactoryStudio\Core\Router();
|
|
|
|
|
|
|
|
|
|
|
|
// https://www15.cradle2careertx.org/portal/api/apps/appconnect
|
|
$router->get('/appconnect',[AppfactoryStudio\Plugins\AppsConnection::class, 'applogin']);
|
|
$router->post('/appconnect',[AppfactoryStudio\Plugins\AppsConnection::class, 'applogin']);
|
|
|
|
|
|
|
|
echo $router->UrlResolve("/v1/apps", $_SERVER['REQUEST_URI'], strtolower($_SERVER['REQUEST_METHOD']));
|
|
|
|
|
|
|
|
// https://www.appfactory.studio/portal/api/membership/internal/get_membership
|
|
|