Laura's Project Notes: Click on the Desired Branch for Details
- git checkout testing OR git pull origin testing (make sure you are not in your local branch that you were just working on)
- navigate to testing if indicated that you are in master
- git checkout -b <nameOfNewBranch> OR git checkout <nameOfExitingBranchYouWantToWorkOn>
- make and test changes, do add and commit
- git push (not the correct code for pushing a new branch, but git will tell you the correct code)
- git push <the rest of the correct code>
- Wait for our Lead to review your changes. She will do a pull to merge with test branch if approved.
In user-service > src
In event-listeners
- Deleted one file, see below
- in index deleted line: UPDATED_REIMBURSEMENT: 'UPDATED_REIMBURSEMENT'
Files Deleted
- daos > SQL: reimbursement-dao.ts
- dtos: reimbursement-dto.ts
- event-listeners: updated-reimbursement.ts
- models: Reimbursement.ts
- router:
- reimbursement-router.ts
- reimbursementAuthor-router.ts
- reimbursementStatus-router.ts
- services: reimbursement-service.ts
- utils: ReimbursementDTO-to-Reimbursement-converter.ts
In index.ts deleted:
- import { reimbursementRouter } from './routers/reimbursement-router'
- import './event-listeners/updated-reimbursement'
- app.use('/reimbursements', reimbursementRouter)
In state-service > src
Files Deleted
- daos > SQL: reimbursement-dao.ts
- dtos: reimbursement-dto.ts
- event-listeners: updated-reimbursement.ts
- models: Reimbursement.ts
- router:
- reimbursement-router.ts
- reimbursementAuthor-router.ts
- reimbursementStatus-router.ts
- services: reimbursement-service.ts
- utils: ReimbursementDTO-to-Reimbursement-converter.ts
In event-listeners
- Deleted one file, see above
- in index deleted line: UPDATED_REIMBURSEMENT: 'UPDATED_REIMBURSEMENT'
In messaging
- in index deleted line: const export reimbursementTopic = pubSubClient.topic('projects/focal-legacy-279818/topics/reimbursement-service')
In index.ts deleted:
- import { reimbursementRouter } from './routers/reimbursement-router'
- import './event-listeners/updated-reimbursement'
- app.use('/reimbursements', reimbursementRouter)
In state-service > src > daos > SQL
- added "export const schema = process.env['SS_SCHEMA']||'swingstate_state_service';" to index
- in poll-dao and state-dao replaced "swingstate_state_service" with "schema"
In user-service > src > daos > SQL > user-dao.ts
- added "const schema = process.env['SS_SCHEMA']||'swingstate_user_service';"
- replaced "swingstate_user_service" with "schema"
In user-service > src >index
- delete from line 7: "export const reimbursementTopic = pubSubClient.topic('projects/focal-legacy-279818/topics/reimbursement-service')"
In state-service > src >
- Got Pub Sub working in GCP with a test message.
- Connected topic in GCP Sub Pub to the state-service by editing code in messaging > index.ts and in index.ts.
Removed secondaryListItems in:
- swingstate-ui > src > components > DashboardComponent > dashboard.tsx in
Removed: "import { mainListItems, secondaryListItems } from './listitems';"
- swingstate-ui > src > components > DashboardComponent > dashboard.tsx in
DashboardComponent, romoved: "<Divider/><List>{secondaryListItems}</List>"
Made some updates to the User Interface
- Updated the user profile side menu with new icons from material-ui, new links, and got the links working.
- Updated the login and regester buttons.
Thursday, August 8th
No more details today than what is already on the stand up page.