Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
Changelog
=========

1.0.5 (Unreleased)
1.1.0 (Unreleased)
---------------------
- Enh #4: Use PHP CS Fixer
- Enh #5: Migration to Bootstrap 5 for HumHub 1.18

1.0.4 (May 23, 2024)
---------------------
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "Integrating GitHub Sign-In (OAuth 2.0).",
"keywords": [
],
"version": "1.0.5",
"version": "1.1.0",
"homepage": "https://github.com/humhub-contrib/auth-github",
"humhub": {
"minVersion": "1.6"
"minVersion": "1.18"
}
}
8 changes: 4 additions & 4 deletions views/admin/index.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/* @var $this \humhub\modules\ui\view\components\View */
/* @var $this \humhub\components\View */
/* @var $model \humhubContrib\auth\github\models\ConfigureForm */

use yii\bootstrap\ActiveForm;
use humhub\widgets\form\ActiveForm;
use yii\helpers\Html;

?>
Expand All @@ -13,7 +13,7 @@

<div class="panel-body">
<p>
<?= Html::a(Yii::t('AuthGithubModule.base', 'GitHub Documentation'), 'https://docs.github.com/en/developers/apps/creating-an-oauth-app', ['class' => 'btn btn-primary pull-right btn-sm', 'target' => '_blank']); ?>
<?= Html::a(Yii::t('AuthGithubModule.base', 'GitHub Documentation'), 'https://docs.github.com/en/developers/apps/creating-an-oauth-app', ['class' => 'btn btn-primary float-end btn-sm', 'target' => '_blank']); ?>
<?= Yii::t('AuthGithubModule.base', 'Please follow the GitHub instructions to create the required <strong>OAuth client</strong> credentials.'); ?>
<br/>
</p>
Expand All @@ -31,7 +31,7 @@
<?= $form->field($model, 'redirectUri')->textInput(['readonly' => true]); ?>
<br/>

<div class="form-group">
<div class="mb-3">
<?= Html::submitButton(Yii::t('base', 'Save'), ['class' => 'btn btn-primary', 'data-ui-loader' => '']) ?>
</div>

Expand Down