Releases: dcblogdev/laravel-microsoft-graph
Releases · dcblogdev/laravel-microsoft-graph
Tenency Release
Renamed repo to daveismyname/laravel-microsoft-graph
Added tenency support
Removed traits and added classes in resources instead
1.3.0
Fixed install error
Corrected path in composer.json stopping installation.
Changed repo to daveismyname/laravel-msgraph
1.1.5 Renamed repo to daveismyname/laravel-msgraph
New traits and nameing convention
Updated traits to support correct paging, each trait should return an array containing the total records (where available), top, skip and count keys.
Added new traits:
- Calendar
- CalendarEvents
- Events
Renamed all methods to be action followed by name ie getEmails
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