change endpoint

This commit is contained in:
hannathkadher
2025-02-19 17:53:20 +04:00
parent 25acd67351
commit d89e3fac8e
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');