Skip to content

Releases: dcblogdev/laravel-microsoft-graph

Spelling corrections on responses

01 Sep 14:40
21be3b0
Compare
Choose a tag to compare
Merge pull request #4 from artjom/spelling-mistakes

corrected spelling

Added checks for null response from Guzzle

15 Aug 08:37
7585d72
Compare
Choose a tag to compare
v2.02

added a response check

eorganised readme.md and updated config.php to support tenancy applications

19 May 23:19
Compare
Choose a tag to compare
v2.0.1

updated readme and added tenency support to config

Tenency Release

24 Apr 10:40
Compare
Choose a tag to compare

Renamed repo to daveismyname/laravel-microsoft-graph
Added tenency support
Removed traits and added classes in resources instead

1.3.0

03 Mar 00:07
Compare
Choose a tag to compare

Added ability to login as a tenant by using MsGraphAdmin

Fixed install error

14 Feb 14:43
Compare
Choose a tag to compare

Corrected path in composer.json stopping installation.

Changed repo to daveismyname/laravel-msgraph

09 Feb 10:27
Compare
Choose a tag to compare
1.1.5

Renamed repo to daveismyname/laravel-msgraph

New traits and nameing convention

10 Nov 18:04
Compare
Choose a tag to compare

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

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();
}