Merge to main #82

Merged
MrLyallCSIT merged 2 commits from main into bug/78 2020-08-13 19:29:06 +00:00
3 changed files with 6 additions and 5 deletions

View File

@@ -10,6 +10,6 @@ jobs:
steps:
- uses: alex-page/github-project-automation-plus@v0.2.4
with:
project: FHeD v1.0
column: In Progress
repo-token: ${{ secrets.AUTO_TOKEN }}
project: v1.0
column: In progress
repo-token: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -5,6 +5,7 @@
// Perform the OIDC authentication
try {
$oidc->authenticate();
$_SESSION['access_token'] = $oidc->requestClientCredentialsToken()->access_token;
$oidc_user = array(
'sub' => $oidc->requestUserInfo('sub'),
'username' => $oidc->requestUserInfo('preferred_username'),

View File

@@ -2,7 +2,7 @@
$PAGE_NAME = "Logging out...";
require_once __DIR__ . "/../../includes/prereqs.php";
$access_token = $_SESSION['access_token'];
session_destroy();
header('Location: /');
$oidc->signOut($access_token, $_ENV['APP_URL']);
?>