Skip to content

Commit

Permalink
feat: [admin/dashboard] ajoute les cards qui décompte les jobs et les…
Browse files Browse the repository at this point in the history
… utilisateurs
  • Loading branch information
matthieuaudemard committed May 6, 2023
1 parent edc5fdc commit e8b5b75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ public class UserUris {
public static final String GET_PENDING_USER_URI = "/pending";
public static final String ENABLE_USER = "/{username}/enable";
public static final String UPDATE_USER_ROLES = "/{username}/roles";
public static final String GET_ENABLED_USERS_COUNT = "/total";
public static final String GET_ENABLED_USERS_COUNT = "/count";
}
2 changes: 1 addition & 1 deletion frontend-implicaction/src/app/shared/models/uris.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class Uris {
static readonly GROUP_LIST = 'users';
static readonly ACTIVATE_USER = 'users/{username}/enable';
static readonly UPDATE_USER_ROLES = 'users/{username}/roles';
static readonly ENABLED_USERS_COUNT = 'users/total';
static readonly ENABLED_USERS_COUNT = 'users/count';
};

static readonly PROFILES = class {
Expand Down

0 comments on commit e8b5b75

Please sign in to comment.