Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
lleirborras committed Apr 22, 2024
1 parent 191f586 commit baba91d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,24 @@ You can instantiate a number of SharePoint clients in your application:

```rb
client = Sharepoint::Client.new({
authentication: "token",
client_id: "client_id",
client_secret: "client_secret",
tenant_id: "tenant_id",
cert_name: "cert_name",
auth_scope: "auth_scope",
uri: "http://sharepoint_url"
authentication: "token",
client_id: "client_id",
client_secret: "client_secret",
tenant_id: "tenant_id",
cert_name: "cert_name",
auth_scope: "auth_scope",
uri: "http://sharepoint_url"
})
```

#### NTLN authentication

```rb
client = Sharepoint::Client.new({
authentication: "mtlm",
username: "username",
password: "password",
uri: "http://sharepoint_url"
authentication: "mtlm",
username: "username",
password: "password",
uri: "http://sharepoint_url"
})
```

Expand Down

0 comments on commit baba91d

Please sign in to comment.