-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This will allow org admins to see all details (including email addresses) of users in the orgs they manage.
- Loading branch information
Showing
4 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
namespace LexBoxApi.GraphQL.CustomTypes; | ||
|
||
public class OrgMemberDto | ||
{ | ||
public required Guid Id { get; set; } | ||
public DateTimeOffset CreatedDate { get; set; } | ||
public DateTimeOffset UpdatedDate { get; set; } | ||
public DateTimeOffset LastActive { get; set; } | ||
public required string Name { get; set; } | ||
public required string? Email { get; set; } | ||
public required string? Username { get; set; } | ||
public required string LocalizationCode { get; set; } | ||
public required bool EmailVerified { get; set; } | ||
public required bool IsAdmin { get; set; } | ||
public required bool Locked { get; set; } | ||
public required bool CanCreateProjects { get; set; } | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters