Skip to content

Commit

Permalink
Fixed MicrosoftGraphScopes
Browse files Browse the repository at this point in the history
  • Loading branch information
tobihagemann committed Jan 2, 2025
1 parent c2b049e commit b3d71bf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Foundation

enum MicrosoftGraphScopes {
static let oneDrive = ["https://graph.microsoft.com/Files.ReadWrite"]
static let sharePoint = ["https://graph.microsoft.com/Sites.ReadWrite.All"]
public enum MicrosoftGraphScopes {
public static let oneDrive = ["https://graph.microsoft.com/Files.ReadWrite"]
public static let sharePoint = ["https://graph.microsoft.com/Files.ReadWrite", "https://graph.microsoft.com/Sites.Read.All"]
}

0 comments on commit b3d71bf

Please sign in to comment.