diff options
Diffstat (limited to '')
| -rw-r--r-- | ufund-ui/src/app/models/Need.ts | 4 | ||||
| -rw-r--r-- | ufund-ui/src/app/models/User.ts | 4 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/ufund-ui/src/app/models/Need.ts b/ufund-ui/src/app/models/Need.ts index 6cf7e76..588e745 100644 --- a/ufund-ui/src/app/models/Need.ts +++ b/ufund-ui/src/app/models/Need.ts @@ -12,6 +12,6 @@ export interface Need {  }  export enum GoalType { -    MONETARY, -    PHYSICAL +    MONETARY = 'MONETARY', +    PHYSICAL = 'PHYSICAL'  } diff --git a/ufund-ui/src/app/models/User.ts b/ufund-ui/src/app/models/User.ts index e6848fa..d7d67b5 100644 --- a/ufund-ui/src/app/models/User.ts +++ b/ufund-ui/src/app/models/User.ts @@ -1,6 +1,6 @@  export enum userType { -    HELPER, -    MANAGER +    HELPER = "HELPER", +    MANAGER = "MANAGER"  }  export interface User {  | 
