Skip to content

Commit 5811e3a

Browse files
committed
updated docs
1 parent 012d37c commit 5811e3a

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

changelog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,3 +334,20 @@ Where $behavior is either rename or replace
334334
## Changed
335335

336336
- [@ChrisToxz](https://github.com/ChrisToxz) Rewrote MsGraphAdmin token methods [44](https://github.com/dcblogdev/laravel-microsoft-graph/pull/44)
337+
338+
### 3.1.9
339+
340+
## Changed
341+
342+
- MsGraphAdmin::connect redirects by default add false to disable redirecting.
343+
344+
### 3.2.0
345+
346+
## Changed
347+
348+
- Changed MsGraph Listener to store a token once authenticated directly
349+
- Re-wrote a lot of the internal workings of MsGraph, no user land changes required apart from the Listener has changed.
350+
351+
## Added
352+
353+
- Added tests for both MsGraph and MsGraphAdmin

src/Console/Commands/MsGraphAdminKeepAliveCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class MsGraphAdminKeepAliveCommand extends Command
1313
public function handle()
1414
{
1515
if (MsGraphAdmin::isConnected()) {
16-
MsGraphAdmin::getAccessToken($returnNullNoAccessToken = true);
16+
MsGraphAdmin::getAccessToken($redirectWhenNotConnected = false);
1717
$this->comment('connected');
1818
}
1919
}

src/Console/Commands/MsGraphKeepAliveCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class MsGraphKeepAliveCommand extends Command
1313
public function handle()
1414
{
1515
if (MsGraph::isConnected()) {
16-
MsGraph::getAccessToken($returnNullNoAccessToken = true);
16+
MsGraph::getAccessToken($redirectWhenNotConnected = false);
1717
$this->comment('connected');
1818
}
1919
}

0 commit comments

Comments
 (0)