-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add MentoredUserIds to Membership Remove AddressId Make GetMemberships call return User as well * Update permissions * Update spacing
- Loading branch information
1 parent
23586c1
commit 0fa7708
Showing
15 changed files
with
222 additions
and
206 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,51 @@ | ||
namespace NP.Lti13Platform.Core.Models | ||
{ | ||
public class CustomPermissions | ||
{ | ||
public bool UserId { get; set; } | ||
public bool UserImage { get; set; } | ||
public bool UserUsername { get; set; } | ||
public bool UserOrg { get; set; } | ||
public bool UserScopeMentor { get; set; } | ||
public bool UserGradeLevelsOneRoster { get; set; } | ||
|
||
public bool ActualUserId { get; set; } | ||
public bool ActualUserImage { get; set; } | ||
public bool ActualUserUsername { get; set; } | ||
public bool ActualUserOrg { get; set; } | ||
public bool ActualUserScopeMentor { get; set; } | ||
public bool ActualUserGradeLevelsOneRoster { get; set; } | ||
|
||
public bool ContextId { get; set; } | ||
public bool ContextOrg { get; set; } | ||
public bool ContextType { get; set; } | ||
public bool ContextLabel { get; set; } | ||
public bool ContextTitle { get; set; } | ||
public bool ContextSourcedId { get; set; } | ||
public bool ContextIdHistory { get; set; } | ||
public bool ContextGradeLevelsOneRoster { get; set; } | ||
|
||
public bool ResourceLinkId { get; set; } | ||
public bool ResourceLinkTitle { get; set; } | ||
public bool ResourceLinkDescription { get; set; } | ||
public bool ResourceLinkAvailableStartDateTime { get; set; } | ||
public bool ResourceLinkAvailableUserStartDateTime { get; set; } | ||
public bool ResourceLinkAvailableEndDateTime { get; set; } | ||
public bool ResourceLinkAvailableUserEndDateTime { get; set; } | ||
public bool ResourceLinkSubmissionStartDateTime { get; set; } | ||
public bool ResourceLinkSubmissionUserStartDateTime { get; set; } | ||
public bool ResourceLinkSubmissionEndDateTime { get; set; } | ||
public bool ResourceLinkSubmissionUserEndDateTime { get; set; } | ||
public bool ResourceLinkLineItemReleaseDateTime { get; set; } | ||
public bool ResourceLinkLineItemUserReleaseDateTime { get; set; } | ||
public bool ResourceLinkIdHistory { get; set; } | ||
|
||
public bool ToolPlatformProductFamilyCode { get; set; } | ||
public bool ToolPlatformProductVersion { get; set; } | ||
public bool ToolPlatformProductInstanceGuid { get; set; } | ||
public bool ToolPlatformProductInstanceName { get; set; } | ||
public bool ToolPlatformProductInstanceDescription { get; set; } | ||
public bool ToolPlatformProductInstanceUrl { get; set; } | ||
public bool ToolPlatformProductInstanceContactEmail { 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
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,31 @@ | ||
namespace NP.Lti13Platform.Core.Models | ||
{ | ||
public class UserPermissions | ||
{ | ||
public bool Address { get; set; } | ||
public bool AddressCountry { get; set; } | ||
public bool AddressFormatted { get; set; } | ||
public bool AddressLocality { get; set; } | ||
public bool AddressPostalCode { get; set; } | ||
public bool AddressRegion { get; set; } | ||
public bool AddressStreetAddress { get; set; } | ||
public bool Birthdate { get; set; } | ||
public bool Email { get; set; } | ||
public bool EmailVerified { get; set; } | ||
public bool FamilyName { get; set; } | ||
public bool Gender { get; set; } | ||
public bool GivenName { get; set; } | ||
public bool Locale { get; set; } | ||
public bool MiddleName { get; set; } | ||
public bool Name { get; set; } | ||
public bool Nickname { get; set; } | ||
public bool PhoneNumber { get; set; } | ||
public bool PhoneNumberVerified { get; set; } | ||
public bool Picture { get; set; } | ||
public bool PreferredUsername { get; set; } | ||
public bool Profile { get; set; } | ||
public bool UpdatedAt { get; set; } | ||
public bool Website { get; set; } | ||
public bool TimeZone { 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
Oops, something went wrong.