expunge telnexus

v0.0.7 v0.0.7
Vernon Keenan 2021-08-05 18:26:44 -07:00
parent d55243aadc
commit 81977c9efb
3 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ type TenantUser struct {
Auth0UserID string
CompanyName string
ContactID string
TelnexusAccount string
TaxnexusAccount string
TenantActive bool
TenantID string
TenantName string

View File

@ -105,7 +105,7 @@ func reMarshalUserRole(s *auth_models.UserRole) *UserRole {
RoleDescription: s.RoleDescription,
RoleID: s.RoleID,
RoleName: s.RoleName,
TelnexusAccount: s.TaxnexusAccount,
TaxnexusAccount: s.TaxnexusAccount,
UserEmail: s.UserEmail,
UserFullName: s.UserFullName,
UserID: s.UserID,
@ -119,7 +119,7 @@ func reMarshalTenantUser(s *auth_models.TenantUser) *TenantUser {
Auth0UserID: s.Auth0UserID,
CompanyName: s.CompanyName,
ContactID: s.ContactID,
TelnexusAccount: s.TaxnexusAccount,
TaxnexusAccount: s.TaxnexusAccount,
TenantActive: s.TenantActive,
TenantID: s.TenantID,
TenantName: s.TenantName,

View File

@ -22,7 +22,7 @@ type UserRole struct {
ContactID string
UserEmail string
UserFullName string
TelnexusAccount string
TaxnexusAccount string
Username string
Auth0UserID string
}