Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4bced68a09 | ||
|
|
4d3ace9d67 | ||
|
|
e9f1b8477a |
2
.github/workflows/deploy.yml
vendored
2
.github/workflows/deploy.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
||||
- id: release
|
||||
uses: rymndhng/release-on-push-action@master
|
||||
with:
|
||||
bump_version_scheme: minor
|
||||
bump_version_scheme: patch
|
||||
|
||||
- name: Check Output Parameters
|
||||
run: |
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
"ramsey/uuid": "^4.0",
|
||||
"vlucas/phpdotenv": "^5.0",
|
||||
"jumbojett/openid-connect-php": "^0.9.0",
|
||||
"sentry/sdk": "^2.1"
|
||||
"sentry/sdk": "^3.0"
|
||||
}
|
||||
}
|
||||
|
||||
816
app/composer.lock
generated
816
app/composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -22,7 +22,8 @@ if (file_exists("/../includes/install.php")) {
|
||||
add_action('run_db_populate');
|
||||
}
|
||||
|
||||
function run_db_populate() {
|
||||
function run_db_populate()
|
||||
{
|
||||
// all my glorious one-time-magic.
|
||||
include("/../includes/install.php");
|
||||
// after all execution rename your file;
|
||||
@@ -38,6 +39,7 @@ $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
||||
|
||||
// OpenID Connect
|
||||
use Jumbojett\OpenIDConnectClient;
|
||||
|
||||
$oidc = new OpenIDConnectClient($_ENV['OIDC_HOST'], $_ENV['OIDC_CLIENT_ID'], $_ENV['OIDC_CLIENT_SECRET']);
|
||||
if ($_ENV['OIDC_DISABLE_SSL'] == "true") {
|
||||
$oidc->setVerifyHost(false);
|
||||
|
||||
Reference in New Issue
Block a user