Company create (#610)

* API: refactor checkPermission

- Rename to checkRole (actually what it is doing)
- Permission check will be incoming

* Add checkPermission function for API

* Create a new company

* Bump release notes

* Cleanup

* Fix
This commit is contained in:
Oliver 2025-02-08 10:36:26 +11:00 committed by GitHub
parent 0c5944a8a0
commit 1a3f48f48c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 129 additions and 22 deletions

View file

@ -183,7 +183,7 @@ class _InvenTreeHomePageState extends State<InvenTreeHomePage> with BaseWidgetPr
bool allowed = true;
if (role.isNotEmpty || permission.isNotEmpty) {
allowed = InvenTreeAPI().checkPermission(role, permission);
allowed = InvenTreeAPI().checkRole(role, permission);
}
return GestureDetector(