fix endpoints

This commit is contained in:
hannathkadher
2025-02-19 17:58:53 +04:00
parent e2ec4bbf31
commit 21cc25cfc4
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ class UserPermissionApi {
Future<List<RolesUserModel>> fetchUsers(String projectId) async {
try {
final response = await _httpService.get(
path: ApiEndpoints.getUsers.replaceAll('{projectUuid}', projectId),
path: ApiEndpoints.getUsers.replaceAll('{projectId}', projectId),
showServerMessage: true,
expectedResponseModel: (json) {
debugPrint('fetchUsers Response: $json');