Skip to content

Commit

Permalink
[TM-1531] sort alphabetical
Browse files Browse the repository at this point in the history
  • Loading branch information
egrojMonroy committed Dec 12, 2024
1 parent fa4d2c4 commit 9fbece2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/apiSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ type StoreResourceMap<AttributeType> = Record<string, StoreResource<AttributeTyp

// The list of potential resource types. IMPORTANT: When a new resource type is integrated, it must
// be added to this list.
export const RESOURCES = ["logins", "organisations", "users", "delayedJobs"] as const;
export const RESOURCES = ["delayedJobs", "logins", "organisations", "users"] as const;

type ApiResources = {
delayedJobs: StoreResourceMap<DelayedJobDto>;
logins: StoreResourceMap<LoginDto>;
organisations: StoreResourceMap<OrganisationDto>;
users: StoreResourceMap<UserDto>;
delayedJobs: StoreResourceMap<DelayedJobDto>;
};

export type JsonApiResource = {
Expand Down

0 comments on commit 9fbece2

Please sign in to comment.