Skip to content

Commit

Permalink
Request approve form (#15)
Browse files Browse the repository at this point in the history
* orgs groups pages structure wip

* fix route paths

* rollback router helper param types

* add guard for org groups page

* fix redirecting

* add create group form with array form hook

* add invite member form

* approve form wip

* update date picker and req VC metadata

* update request entity, update verify request and vc group preview card

* req creds parser

* add rejecting request method

* refactored org-details context
  • Loading branch information
lukachi authored Jan 11, 2024
1 parent b2cb9e2 commit 752b9f8
Show file tree
Hide file tree
Showing 25 changed files with 1,480 additions and 677 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
"@hookform/resolvers": "^3.3.2",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"@rarimo/rarime-connector": "^1.0.2",
"@mui/x-date-pickers": "^6.18.7",
"@rarimo/rarime-connector": "^2.0.0-rc.1",
"@walletconnect/modal": "^2.6.2",
"i18next": "^22.4.3",
"lodash": "^4.17.21",
Expand Down
7 changes: 7 additions & 0 deletions src/api/modules/orgs/enums/orgs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,10 @@ export enum OrgsIncludes {
Organization = 'Organization',
Owner = 'Owner',
}

export enum OrgUserRoles {
Undefined = '0',
Employee = '1',
Admin = '2',
SuperAdmin = '3',
}
1 change: 1 addition & 0 deletions src/api/modules/orgs/helpers/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './org-groups'
export * from './org-groups-requests'
export * from './orgs'
Loading

0 comments on commit 752b9f8

Please sign in to comment.