├── .github └── workflows │ ├── docker-image-dev.yml │ └── docker-image-main.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── assets └── filter.peggy ├── docker-compose.yml ├── nest-cli.json ├── openapi.json ├── package.json ├── rein.js ├── sample.env ├── src ├── backend │ ├── _utils │ │ ├── cache.utils.ts │ │ └── dto.utils.ts │ ├── airport │ │ ├── airport.controller.ts │ │ ├── airport.dto.ts │ │ ├── airport.model.ts │ │ ├── airport.module.ts │ │ └── airport.service.ts │ ├── app.module.ts │ ├── auth │ │ ├── auth.controller.ts │ │ ├── auth.decorator.ts │ │ ├── auth.guard.ts │ │ ├── auth.middleware.ts │ │ ├── auth.module.ts │ │ └── auth.service.ts │ ├── cdm │ │ ├── cdm.module.ts │ │ └── cdm.service.ts │ ├── config.ts │ ├── config │ │ ├── config.controller.ts │ │ ├── config.module.ts │ │ └── config.service.ts │ ├── custom.d.ts │ ├── database.module.ts │ ├── ecfmp │ │ ├── ecfmp-measure.model.ts │ │ ├── ecfmp.module.ts │ │ └── ecfmp.service.ts │ ├── etfms │ │ ├── etfms.module.ts │ │ └── etfms.service.ts │ ├── frontend-proxy │ │ ├── frontend-proxy.middleware.ts │ │ └── frontend-proxy.module.ts │ ├── logger.ts │ ├── main.ts │ ├── message │ │ ├── message.controller.ts │ │ ├── message.dto.ts │ │ ├── message.module.ts │ │ └── message.service.ts │ ├── pilot │ │ ├── pilot.controller.ts │ │ ├── pilot.dto.ts │ │ ├── pilot.model.ts │ │ ├── pilot.module.ts │ │ └── pilot.service.ts │ ├── plugin-token │ │ ├── plugin-token.controller.ts │ │ ├── plugin-token.model.ts │ │ ├── plugin-token.module.ts │ │ └── plugin-token.service.ts │ ├── schedule │ │ ├── schedule.decorator.ts │ │ ├── schedule.model.ts │ │ ├── schedule.module.ts │ │ ├── schedule.service.spec.ts │ │ └── schedule.service.ts │ ├── user │ │ ├── user.controller.ts │ │ ├── user.model.ts │ │ ├── user.module.ts │ │ └── user.service.ts │ ├── utils │ │ ├── utils.module.ts │ │ └── utils.service.ts │ └── vdgs │ │ ├── vdgs.controller.ts │ │ └── vdgs.module.ts ├── frontend │ ├── index.html │ ├── public │ │ ├── favicon.png │ │ ├── manifest.json │ │ ├── robots.txt │ │ ├── touch-icon-ipad-retina.png │ │ ├── touch-icon-ipad.png │ │ └── touch-icon-iphone-retina.png │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── assets │ │ │ ├── cdm1.png │ │ │ ├── cdm_logo.png │ │ │ ├── cdm_logo_no_text.png │ │ │ ├── fonts │ │ │ │ ├── advanced_dot_digital-7-webfont.woff │ │ │ │ └── advanced_dot_digital-7-webfont.woff2 │ │ │ └── github-mark-white.png │ │ ├── components │ │ │ ├── DepartureBlocks.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Loading.tsx │ │ │ ├── Navbar.tsx │ │ │ ├── ProfilePicture.tsx │ │ │ ├── RunwayCapacityDialog.tsx │ │ │ ├── TaxizoneDeleteDialog.tsx │ │ │ └── TaxizoneDialog.tsx │ │ ├── contexts │ │ │ ├── AuthProvider.tsx │ │ │ └── DarkModeProvider.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── interfaces │ │ │ └── airport.interface.ts │ │ ├── pages │ │ │ ├── AirportDetails.tsx │ │ │ ├── Airports.tsx │ │ │ ├── AuthFailure.tsx │ │ │ ├── AuthorizePlugin.tsx │ │ │ ├── Debug.tsx │ │ │ ├── Delivery.tsx │ │ │ ├── FlowManagement.tsx │ │ │ ├── Landingpage.tsx │ │ │ ├── Profile.tsx │ │ │ └── VdgsNew.tsx │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ ├── services │ │ │ ├── AirportService.ts │ │ │ ├── AuthService.ts │ │ │ ├── DatafeedService.ts │ │ │ ├── DepartureBlocksService.ts │ │ │ ├── FlowService.ts │ │ │ ├── MetaService.ts │ │ │ ├── PilotService.ts │ │ │ ├── VdgsService.ts │ │ │ └── pluginToken.service.ts │ │ ├── setupProxy.js │ │ ├── setupTests.ts │ │ └── utils │ │ │ ├── block.utils.ts │ │ │ ├── time.ts │ │ │ └── ui │ │ │ ├── classNameHelper.ts │ │ │ └── customDesign │ │ │ ├── accordion.ts │ │ │ ├── button.ts │ │ │ ├── card.ts │ │ │ ├── datatable.ts │ │ │ ├── dataview.ts │ │ │ ├── dialog.ts │ │ │ ├── dropdown.ts │ │ │ ├── global.ts │ │ │ ├── imputtextarea.ts │ │ │ ├── inputnumber.ts │ │ │ ├── inputtext.ts │ │ │ ├── menu.ts │ │ │ ├── panel.ts │ │ │ ├── selectbutton.ts │ │ │ ├── toast.ts │ │ │ ├── toolbar.ts │ │ │ └── transitions.ts │ ├── tailwind.config.js │ └── vite.config.ts └── shared │ ├── errors.ts │ ├── interfaces │ ├── airport.interface.ts │ ├── config.interface.ts │ ├── ecfmp.interface.ts │ ├── message.interface.ts │ ├── pilot.interface.ts │ ├── plugin-token.interface.ts │ ├── rogerPlugin.interface.ts │ ├── user.interface.ts │ └── vatsim.interface.ts │ └── utils │ ├── block.utils.ts │ └── type.utils.ts ├── thunder-tests ├── thunderActivity.json ├── thunderCollection.json ├── thunderEnvironment.json └── thunderclient.json ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.viteconfig.json └── tsconfig.web.json /.github/workflows/docker-image-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/.github/workflows/docker-image-dev.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/.github/workflows/docker-image-main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/README.md -------------------------------------------------------------------------------- /assets/filter.peggy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/assets/filter.peggy -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/nest-cli.json -------------------------------------------------------------------------------- /openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/openapi.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/package.json -------------------------------------------------------------------------------- /rein.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/rein.js -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/sample.env -------------------------------------------------------------------------------- /src/backend/_utils/cache.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/_utils/cache.utils.ts -------------------------------------------------------------------------------- /src/backend/_utils/dto.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/_utils/dto.utils.ts -------------------------------------------------------------------------------- /src/backend/airport/airport.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/airport/airport.controller.ts -------------------------------------------------------------------------------- /src/backend/airport/airport.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/airport/airport.dto.ts -------------------------------------------------------------------------------- /src/backend/airport/airport.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/airport/airport.model.ts -------------------------------------------------------------------------------- /src/backend/airport/airport.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/airport/airport.module.ts -------------------------------------------------------------------------------- /src/backend/airport/airport.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/airport/airport.service.ts -------------------------------------------------------------------------------- /src/backend/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/app.module.ts -------------------------------------------------------------------------------- /src/backend/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/auth/auth.controller.ts -------------------------------------------------------------------------------- /src/backend/auth/auth.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/auth/auth.decorator.ts -------------------------------------------------------------------------------- /src/backend/auth/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/auth/auth.guard.ts -------------------------------------------------------------------------------- /src/backend/auth/auth.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/auth/auth.middleware.ts -------------------------------------------------------------------------------- /src/backend/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/auth/auth.module.ts -------------------------------------------------------------------------------- /src/backend/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/auth/auth.service.ts -------------------------------------------------------------------------------- /src/backend/cdm/cdm.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/cdm/cdm.module.ts -------------------------------------------------------------------------------- /src/backend/cdm/cdm.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/cdm/cdm.service.ts -------------------------------------------------------------------------------- /src/backend/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/config.ts -------------------------------------------------------------------------------- /src/backend/config/config.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/config/config.controller.ts -------------------------------------------------------------------------------- /src/backend/config/config.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/config/config.module.ts -------------------------------------------------------------------------------- /src/backend/config/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/config/config.service.ts -------------------------------------------------------------------------------- /src/backend/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/custom.d.ts -------------------------------------------------------------------------------- /src/backend/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/database.module.ts -------------------------------------------------------------------------------- /src/backend/ecfmp/ecfmp-measure.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/ecfmp/ecfmp-measure.model.ts -------------------------------------------------------------------------------- /src/backend/ecfmp/ecfmp.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/ecfmp/ecfmp.module.ts -------------------------------------------------------------------------------- /src/backend/ecfmp/ecfmp.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/ecfmp/ecfmp.service.ts -------------------------------------------------------------------------------- /src/backend/etfms/etfms.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/etfms/etfms.module.ts -------------------------------------------------------------------------------- /src/backend/etfms/etfms.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/etfms/etfms.service.ts -------------------------------------------------------------------------------- /src/backend/frontend-proxy/frontend-proxy.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/frontend-proxy/frontend-proxy.middleware.ts -------------------------------------------------------------------------------- /src/backend/frontend-proxy/frontend-proxy.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/frontend-proxy/frontend-proxy.module.ts -------------------------------------------------------------------------------- /src/backend/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/logger.ts -------------------------------------------------------------------------------- /src/backend/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/main.ts -------------------------------------------------------------------------------- /src/backend/message/message.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/message/message.controller.ts -------------------------------------------------------------------------------- /src/backend/message/message.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/message/message.dto.ts -------------------------------------------------------------------------------- /src/backend/message/message.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/message/message.module.ts -------------------------------------------------------------------------------- /src/backend/message/message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/message/message.service.ts -------------------------------------------------------------------------------- /src/backend/pilot/pilot.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/pilot/pilot.controller.ts -------------------------------------------------------------------------------- /src/backend/pilot/pilot.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/pilot/pilot.dto.ts -------------------------------------------------------------------------------- /src/backend/pilot/pilot.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/pilot/pilot.model.ts -------------------------------------------------------------------------------- /src/backend/pilot/pilot.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/pilot/pilot.module.ts -------------------------------------------------------------------------------- /src/backend/pilot/pilot.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/pilot/pilot.service.ts -------------------------------------------------------------------------------- /src/backend/plugin-token/plugin-token.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/plugin-token/plugin-token.controller.ts -------------------------------------------------------------------------------- /src/backend/plugin-token/plugin-token.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/plugin-token/plugin-token.model.ts -------------------------------------------------------------------------------- /src/backend/plugin-token/plugin-token.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/plugin-token/plugin-token.module.ts -------------------------------------------------------------------------------- /src/backend/plugin-token/plugin-token.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/plugin-token/plugin-token.service.ts -------------------------------------------------------------------------------- /src/backend/schedule/schedule.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/schedule/schedule.decorator.ts -------------------------------------------------------------------------------- /src/backend/schedule/schedule.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/schedule/schedule.model.ts -------------------------------------------------------------------------------- /src/backend/schedule/schedule.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/schedule/schedule.module.ts -------------------------------------------------------------------------------- /src/backend/schedule/schedule.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/schedule/schedule.service.spec.ts -------------------------------------------------------------------------------- /src/backend/schedule/schedule.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/schedule/schedule.service.ts -------------------------------------------------------------------------------- /src/backend/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/user/user.controller.ts -------------------------------------------------------------------------------- /src/backend/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/user/user.model.ts -------------------------------------------------------------------------------- /src/backend/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/user/user.module.ts -------------------------------------------------------------------------------- /src/backend/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/user/user.service.ts -------------------------------------------------------------------------------- /src/backend/utils/utils.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/utils/utils.module.ts -------------------------------------------------------------------------------- /src/backend/utils/utils.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/utils/utils.service.ts -------------------------------------------------------------------------------- /src/backend/vdgs/vdgs.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/vdgs/vdgs.controller.ts -------------------------------------------------------------------------------- /src/backend/vdgs/vdgs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/backend/vdgs/vdgs.module.ts -------------------------------------------------------------------------------- /src/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/index.html -------------------------------------------------------------------------------- /src/frontend/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/public/favicon.png -------------------------------------------------------------------------------- /src/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/public/manifest.json -------------------------------------------------------------------------------- /src/frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/public/robots.txt -------------------------------------------------------------------------------- /src/frontend/public/touch-icon-ipad-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/public/touch-icon-ipad-retina.png -------------------------------------------------------------------------------- /src/frontend/public/touch-icon-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/public/touch-icon-ipad.png -------------------------------------------------------------------------------- /src/frontend/public/touch-icon-iphone-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/public/touch-icon-iphone-retina.png -------------------------------------------------------------------------------- /src/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/App.css -------------------------------------------------------------------------------- /src/frontend/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/App.test.tsx -------------------------------------------------------------------------------- /src/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/App.tsx -------------------------------------------------------------------------------- /src/frontend/src/assets/cdm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/assets/cdm1.png -------------------------------------------------------------------------------- /src/frontend/src/assets/cdm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/assets/cdm_logo.png -------------------------------------------------------------------------------- /src/frontend/src/assets/cdm_logo_no_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/assets/cdm_logo_no_text.png -------------------------------------------------------------------------------- /src/frontend/src/assets/fonts/advanced_dot_digital-7-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/assets/fonts/advanced_dot_digital-7-webfont.woff -------------------------------------------------------------------------------- /src/frontend/src/assets/fonts/advanced_dot_digital-7-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/assets/fonts/advanced_dot_digital-7-webfont.woff2 -------------------------------------------------------------------------------- /src/frontend/src/assets/github-mark-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/assets/github-mark-white.png -------------------------------------------------------------------------------- /src/frontend/src/components/DepartureBlocks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/components/DepartureBlocks.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/components/Loading.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/ProfilePicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/components/ProfilePicture.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/RunwayCapacityDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/components/RunwayCapacityDialog.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/TaxizoneDeleteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/components/TaxizoneDeleteDialog.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/TaxizoneDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/components/TaxizoneDialog.tsx -------------------------------------------------------------------------------- /src/frontend/src/contexts/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/contexts/AuthProvider.tsx -------------------------------------------------------------------------------- /src/frontend/src/contexts/DarkModeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/contexts/DarkModeProvider.tsx -------------------------------------------------------------------------------- /src/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/index.css -------------------------------------------------------------------------------- /src/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/index.tsx -------------------------------------------------------------------------------- /src/frontend/src/interfaces/airport.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/interfaces/airport.interface.ts -------------------------------------------------------------------------------- /src/frontend/src/pages/AirportDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/pages/AirportDetails.tsx -------------------------------------------------------------------------------- /src/frontend/src/pages/Airports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/pages/Airports.tsx -------------------------------------------------------------------------------- /src/frontend/src/pages/AuthFailure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/pages/AuthFailure.tsx -------------------------------------------------------------------------------- /src/frontend/src/pages/AuthorizePlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/pages/AuthorizePlugin.tsx -------------------------------------------------------------------------------- /src/frontend/src/pages/Debug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/pages/Debug.tsx -------------------------------------------------------------------------------- /src/frontend/src/pages/Delivery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/pages/Delivery.tsx -------------------------------------------------------------------------------- /src/frontend/src/pages/FlowManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/pages/FlowManagement.tsx -------------------------------------------------------------------------------- /src/frontend/src/pages/Landingpage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/pages/Landingpage.tsx -------------------------------------------------------------------------------- /src/frontend/src/pages/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/pages/Profile.tsx -------------------------------------------------------------------------------- /src/frontend/src/pages/VdgsNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/pages/VdgsNew.tsx -------------------------------------------------------------------------------- /src/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/react-app-env.d.ts -------------------------------------------------------------------------------- /src/frontend/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/frontend/src/services/AirportService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/services/AirportService.ts -------------------------------------------------------------------------------- /src/frontend/src/services/AuthService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/services/AuthService.ts -------------------------------------------------------------------------------- /src/frontend/src/services/DatafeedService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/services/DatafeedService.ts -------------------------------------------------------------------------------- /src/frontend/src/services/DepartureBlocksService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/services/DepartureBlocksService.ts -------------------------------------------------------------------------------- /src/frontend/src/services/FlowService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/services/FlowService.ts -------------------------------------------------------------------------------- /src/frontend/src/services/MetaService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/services/MetaService.ts -------------------------------------------------------------------------------- /src/frontend/src/services/PilotService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/services/PilotService.ts -------------------------------------------------------------------------------- /src/frontend/src/services/VdgsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/services/VdgsService.ts -------------------------------------------------------------------------------- /src/frontend/src/services/pluginToken.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/services/pluginToken.service.ts -------------------------------------------------------------------------------- /src/frontend/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/setupProxy.js -------------------------------------------------------------------------------- /src/frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/setupTests.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/block.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/block.utils.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/time.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/classNameHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/classNameHelper.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/accordion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/accordion.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/button.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/card.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/datatable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/datatable.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/dataview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/dataview.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/dialog.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/dropdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/dropdown.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/global.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/imputtextarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/imputtextarea.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/inputnumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/inputnumber.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/inputtext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/inputtext.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/menu.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/panel.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/selectbutton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/selectbutton.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/toast.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/toolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/toolbar.ts -------------------------------------------------------------------------------- /src/frontend/src/utils/ui/customDesign/transitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/src/utils/ui/customDesign/transitions.ts -------------------------------------------------------------------------------- /src/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/tailwind.config.js -------------------------------------------------------------------------------- /src/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/frontend/vite.config.ts -------------------------------------------------------------------------------- /src/shared/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/errors.ts -------------------------------------------------------------------------------- /src/shared/interfaces/airport.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/interfaces/airport.interface.ts -------------------------------------------------------------------------------- /src/shared/interfaces/config.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/interfaces/config.interface.ts -------------------------------------------------------------------------------- /src/shared/interfaces/ecfmp.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/interfaces/ecfmp.interface.ts -------------------------------------------------------------------------------- /src/shared/interfaces/message.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/interfaces/message.interface.ts -------------------------------------------------------------------------------- /src/shared/interfaces/pilot.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/interfaces/pilot.interface.ts -------------------------------------------------------------------------------- /src/shared/interfaces/plugin-token.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/interfaces/plugin-token.interface.ts -------------------------------------------------------------------------------- /src/shared/interfaces/rogerPlugin.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/interfaces/rogerPlugin.interface.ts -------------------------------------------------------------------------------- /src/shared/interfaces/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/interfaces/user.interface.ts -------------------------------------------------------------------------------- /src/shared/interfaces/vatsim.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/interfaces/vatsim.interface.ts -------------------------------------------------------------------------------- /src/shared/utils/block.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/utils/block.utils.ts -------------------------------------------------------------------------------- /src/shared/utils/type.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/src/shared/utils/type.utils.ts -------------------------------------------------------------------------------- /thunder-tests/thunderActivity.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /thunder-tests/thunderCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/thunder-tests/thunderCollection.json -------------------------------------------------------------------------------- /thunder-tests/thunderEnvironment.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /thunder-tests/thunderclient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/thunder-tests/thunderclient.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.viteconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/tsconfig.viteconfig.json -------------------------------------------------------------------------------- /tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vACDM/vacdm-server/HEAD/tsconfig.web.json --------------------------------------------------------------------------------