Closed pstenstrm closed 8 years ago
When refactoring the confirmation pages a lot of unused code have been left behind. For example this is the only use of the routes.job.accept route: https://github.com/justarrived/just-match-frontend/blob/master/src/app/common/services/job-service.js#L101
routes.job.accept
Instead the routes.global.confirmatin route is used.
routes.global.confirmatin
The routes.job.accept route, AcceptedJobCtrl controller and accepted-job.html template remains.
AcceptedJobCtrl
accepted-job.html
There might remain other unused confirmation pages with associated html, css and js code that can be removed.
Also look at: routes.job.approved.
routes.job.approved
https://github.com/justarrived/just-match-frontend/blob/master/src/app/common/services/job-service.js#L68
When refactoring the confirmation pages a lot of unused code have been left behind. For example this is the only use of the
routes.job.accept
route: https://github.com/justarrived/just-match-frontend/blob/master/src/app/common/services/job-service.js#L101Instead the
routes.global.confirmatin
route is used.The
routes.job.accept
route,AcceptedJobCtrl
controller andaccepted-job.html
template remains.There might remain other unused confirmation pages with associated html, css and js code that can be removed.