Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | export const GET_USER_ORGS_ACTION = "authentication/getUserOrgs"; export const RETRIEVE_ORGS_ACTION = "organisations"; export const GET_PROFILE_ACTION = "authentication/getProfile"; export const CREATE_ORGANISATION_ACTION = "organisations/create"; export const DELETE_ORGANISATION_ACTION = "organisations/create"; export const EDIT_ORGANISATION_ACTION = "organisations/update"; export const GET_ORG_ACTION = "organisation/retrieve"; export const GET_ORG_SOURCES_ACTION = "organisation/retrieveSources"; export const GET_ORG_COLLECTIONS_ACTION = "organisation/retrieveCollections"; export const GET_ORG_MEMBERS_ACTION = "organisation/retrieveMembers"; export const CREATE_ORG_MEMBER_ACTION = "organisation/addMember"; export const DELETE_ORG_MEMBER_ACTION = "organisation/deleteMember"; export const SHOW_ADD_MEMBER_DIALOG = "organisation/showAddMember"; export const HIDE_ADD_MEMBER_DIALOG = "organisation/hideAddMember"; export const SHOW_DELETE_MEMBER_DIALOG = "organisation/showDeleteMember"; export const HIDE_DELETE_MEMBER_DIALOG = "organisation/hideDeleteMember"; export const TOGGLE_SHOW_VERIFIED_ACTION = "organisation/toggleShowVerified"; |