Backend for the wodss-application spring semester 19.
npm install
MongoDB has to be installed and running
npm start
- employee
- Fields
- _id
- Number
- Required
- password
- String
- active
- Boolean
- firstName
- String
- Required
- lastName
- String
- Required
- emailAddress
- String
- Required
- Unique
- role
- String
- Content: enum ['ADMINISTRATOR', 'PROJECTMANAGER', 'DEVELOPER']
- String
- _id
- Virtuals
- id
- String, maps the param _id to the API-Definition of "id"
- id
- Fields
-
projects
- project_id
- name
- description
- project_manager_id
- workload_need
- start_date
- end_date
- is_active
-
roles
- role_id
- name
-
users
- user_id
- name
- password
- workload
-
user_role
- user_id
- role_id
-
project_user
- project_id
- user_id
- workload