Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dcblogdev committed May 25, 2023
1 parent 012d37c commit 5811e3a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,3 +334,20 @@ Where $behavior is either rename or replace
## Changed

- [@ChrisToxz](https://github.com/ChrisToxz) Rewrote MsGraphAdmin token methods [44](https://github.com/dcblogdev/laravel-microsoft-graph/pull/44)

### 3.1.9

## Changed

- MsGraphAdmin::connect redirects by default add false to disable redirecting.

### 3.2.0

## Changed

- Changed MsGraph Listener to store a token once authenticated directly
- Re-wrote a lot of the internal workings of MsGraph, no user land changes required apart from the Listener has changed.

## Added

- Added tests for both MsGraph and MsGraphAdmin
2 changes: 1 addition & 1 deletion src/Console/Commands/MsGraphAdminKeepAliveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MsGraphAdminKeepAliveCommand extends Command
public function handle()
{
if (MsGraphAdmin::isConnected()) {
MsGraphAdmin::getAccessToken($returnNullNoAccessToken = true);
MsGraphAdmin::getAccessToken($redirectWhenNotConnected = false);
$this->comment('connected');
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Commands/MsGraphKeepAliveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MsGraphKeepAliveCommand extends Command
public function handle()
{
if (MsGraph::isConnected()) {
MsGraph::getAccessToken($returnNullNoAccessToken = true);
MsGraph::getAccessToken($redirectWhenNotConnected = false);
$this->comment('connected');
}
}
Expand Down

0 comments on commit 5811e3a

Please sign in to comment.