Releases: dcblogdev/laravel-microsoft-graph
Releases · dcblogdev/laravel-microsoft-graph
Added Traits
Added traits:
- Drive
- ToDo
added methods
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
1.1.1 updated changelog
Fixed paths
1.1.0 updated readme formatting
First stable release
1.0.0 cleaned readme