Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public override void ExecuteCmdlet()
Homepage = HomePage,
IdentifierUris = IdentifierUri,
ReplyUrls = ReplyUrl,
AvailableToOtherTenants = AvailableToOtherTenants
AvailableToOtherTenants = this.IsParameterBound(c => c.AvailableToOtherTenants) ? AvailableToOtherTenants : (bool?)null
};

if (ShouldProcess(target: ObjectId, action: string.Format("Updating an application with object id '{0}'", ObjectId)))
Expand Down
1 change: 1 addition & 0 deletions src/Resources/Resources/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- Add new cmdlets for managing deployments at tenant scope: *-AzTenantDeployment
- Refactor *-AzDeployment cmdlets to work specificly at subscription scope
- Created aliases *-AzSubscriptionDeployment for *-AzDeployment cmdlets
* Fix `Update-AzADApplication` when parameter `AvailableToOtherTenants` is not set

## Version 1.10.0
* Make -Scope optional in *-AzPolicyAssignment cmdlets with default to context subscription
Expand Down