Prevent name conflicts with users when a group has the same exo mail name the user needs. adding a suffix will prevent name conflicts in the future.
This commit is contained in:
Elliot Huffman 2022-04-05 13:11:14 -04:00
Родитель e3b942d656
Коммит b967eeed25
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -455,7 +455,7 @@ export class AppGraphClient {
// Build the graph client post body
let postBody: MicrosoftGraphBeta.Group = {
displayName: name,
mailNickname: nickName,
mailNickname: nickName + "-PSM",
mailEnabled: false,
securityEnabled: true
};