We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add many to many relationship to Visa - Permissions. A permission is a policy (ACL entity) and scope(mask) in ego. Example: SONG.READ.
SONG.READ
Refer to the note in https://wiki.oicr.on.ca/display/OV/Investigation+-+Ga4gh+passports+in+Ego#InvestigationGa4ghpassportsinEgo-VisaTypes
Possible table structure:
CREATE TABLE ACLVISAPERMISSION ( id UUID PRIMARY KEY, entity UUID, visaId UUID, mask ACLMASK NOT NULL, FOREIGN KEY (entity) REFERENCES ACLENTITY(id), FOREIGN KEY (sid) REFERENCES GA4GHVISA(id) );
The text was updated successfully, but these errors were encountered:
Azher2Ali
No branches or pull requests
Detailed Description
Add many to many relationship to Visa - Permissions.
A permission is a policy (ACL entity) and scope(mask) in ego. Example:
SONG.READ
.Possible Implementation
Refer to the note in https://wiki.oicr.on.ca/display/OV/Investigation+-+Ga4gh+passports+in+Ego#InvestigationGa4ghpassportsinEgo-VisaTypes
Possible table structure:
The text was updated successfully, but these errors were encountered: