Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add Browser Isolation Non-identity onramp support #1424

Merged
merged 5 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/1424.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
teams: Add `non_identity_enabled` boolean in browser isolation settings
```
1 change: 1 addition & 0 deletions teams_accounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ type TeamsAccountSettings struct {

type BrowserIsolation struct {
UrlBrowserIsolationEnabled bool `json:"url_browser_isolation_enabled"`
NonIdentityEnabled bool `json:"non_identity_enabled"`
jacobbednarz marked this conversation as resolved.
Show resolved Hide resolved
}

type TeamsAntivirus struct {
Expand Down
8 changes: 8 additions & 0 deletions teams_accounts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ func TestTeamsAccountConfiguration(t *testing.T) {
"logo_path": "https://logos.com/a.png",
"background_color": "#ff0000",
"suppress_footer": true
},
"browser_isolation": {
"url_browser_isolation_enabled": true,
"non_identity_enabled": true
}
}
}
Expand Down Expand Up @@ -108,6 +112,10 @@ func TestTeamsAccountConfiguration(t *testing.T) {
MailtoSubject: "Blocked User Inquiry",
SuppressFooter: BoolPtr(true),
},
BrowserIsolation: &BrowserIsolation{
UrlBrowserIsolationEnabled: true,
NonIdentityEnabled: true,
},
})
}
}
Expand Down