Fixed:
Decoupling of userprincipalName and PrimaryEmailAddress OrganizationUsers updated with image buttons with the ability to go directly to offering settings When changing primaryemailaddress, sip address changes accordingly Mailboxes list view updated with Login (=userprincipalName) with the ability to go directly to user setting Lync list view updated with Login (=userprincipalName) with the ability to go directly to user setting
This commit is contained in:
parent
bc1168a1a4
commit
6cf946b6b4
30 changed files with 869 additions and 121 deletions
|
@ -49,6 +49,7 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
int mailboxPlanId;
|
||||
string mailboxPlan;
|
||||
string publicFolderPermission;
|
||||
string userPrincipalName;
|
||||
|
||||
public int AccountId
|
||||
{
|
||||
|
@ -142,5 +143,11 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
}
|
||||
|
||||
|
||||
public string UserPrincipalName
|
||||
{
|
||||
get { return this.userPrincipalName; }
|
||||
set { this.userPrincipalName = value; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -70,5 +70,8 @@
|
|||
|
||||
public const string CANNOT_REMOVE_LYNC_FEDERATIONDOMAIN = "CANNOT_REMOVE_LYNC_FEDERATIONDOMAIN";
|
||||
|
||||
public const string FAILED_SET_SETTINGS = "FAILED_SET_SETTINGS";
|
||||
|
||||
public const string ADDRESS_ALREADY_USED = "ADDRESS_ALREADY_USED";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,8 +34,8 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
{
|
||||
public class LyncUser
|
||||
{
|
||||
public string PrimaryUri { get; set; }
|
||||
public string PrimaryEmailAddress { get; set; }
|
||||
public string SipAddress { get; set; }
|
||||
public string UserPrincipalName { get; set; }
|
||||
public string DisplayName { get; set; }
|
||||
public string LineUri { get; set; }
|
||||
public int AccountID { get; set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue