Skip to content

Commit

Permalink
Fix #2897
Browse files Browse the repository at this point in the history
  • Loading branch information
ykuijs committed Feb 14, 2023
1 parent e29eb3e commit 4890f14
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
* IntuneRoleAssignment
* Fixed issue where the export did not the correct type for ScopeType
FIXES [#2889](https://github.com/microsoft/Microsoft365DSC/issues/2889)
* TeamsChannelTab
* Updated key parameters to prevent detected duplicates
FIXES [#2897](https://github.com/microsoft/Microsoft365DSC/issues/2897)
* MISC
* Updated required permissions of several resources
FIXES [#2866](https://github.com/microsoft/Microsoft365DSC/issues/2866)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
class MSFT_TeamsChannelTab : OMI_BaseResource
{
[Key, Description("Display Name of the Channel Tab.")]String DisplayName;
[Required, Description("Display Name of the Team.")]String TeamName;
[Required, Description("Display Name of the Channel.")]String ChannelName;
[Key, Description("Display Name of the Team.")]String TeamName;
[Key, Description("Display Name of the Channel.")]String ChannelName;
[Write, Description("Unique Id of the Team of the instance on the source tenant.")]String TeamId;
[Write, Description("Id of the Teams App associated with the custom tab.")]String TeamsApp;
[Write, Description("Index of the sort order for the custom tab.")]UInt32 SortOrderIndex;
Expand Down

0 comments on commit 4890f14

Please sign in to comment.