Skip to content

Releases: dcblogdev/laravel-microsoft-graph

Added Traits

06 Nov 14:12
bd4f645
Compare
Choose a tag to compare

Added traits:

  • Drive
  • ToDo

added methods

02 Nov 11:31
c9de5d8
Compare
Choose a tag to compare

Added MsGraphAuthenticated to routes to ensure the user is authenticated id:

Route::group(['middleware' => ['web', 'MsGraphAuthenticated'], function()

Added method getTokenData($id) to return the model object based on the matching user_id from $id

public function getTokenData($id = null)
{
    $id = ($id) ? $id : auth()->id();
    return MsGraphToken::where('user_id', $id)->first();
}

corrected config publish path

31 Oct 12:56
Compare
Choose a tag to compare
1.1.1

updated changelog

Fixed paths

31 Oct 10:32
Compare
Choose a tag to compare
1.1.0

updated readme formatting

First stable release

30 Oct 16:27
Compare
Choose a tag to compare
1.0.0

cleaned readme