├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── deps └── flight-tracker-dashboard │ ├── _all.png │ ├── core.png │ ├── feature.png │ ├── layout.png │ ├── pattern.png │ └── ui.png ├── documentation ├── components │ ├── AppComponent.html │ ├── CreateTicketComponent.html │ ├── DashboardChart.html │ ├── DashboardComponent.html │ ├── DashboardLayoutComponent.html │ ├── SignInComponent.html │ ├── TicketCardComponent.html │ ├── TicketDealsComponent.html │ ├── TicketFiltersComponent.html │ ├── TicketListComponent.html │ ├── TicketsComponent.html │ └── ToolbarComponent.html ├── coverage.html ├── dependencies.html ├── directives │ └── RoleDirective.html ├── fonts │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ ├── ionicons.woff │ ├── ionicons.woff2 │ ├── roboto-v15-latin-300.eot │ ├── roboto-v15-latin-300.svg │ ├── roboto-v15-latin-300.ttf │ ├── roboto-v15-latin-300.woff │ ├── roboto-v15-latin-300.woff2 │ ├── roboto-v15-latin-700.eot │ ├── roboto-v15-latin-700.svg │ ├── roboto-v15-latin-700.ttf │ ├── roboto-v15-latin-700.woff │ ├── roboto-v15-latin-700.woff2 │ ├── roboto-v15-latin-italic.eot │ ├── roboto-v15-latin-italic.svg │ ├── roboto-v15-latin-italic.ttf │ ├── roboto-v15-latin-italic.woff │ ├── roboto-v15-latin-italic.woff2 │ ├── roboto-v15-latin-regular.eot │ ├── roboto-v15-latin-regular.svg │ ├── roboto-v15-latin-regular.ttf │ ├── roboto-v15-latin-regular.woff │ └── roboto-v15-latin-regular.woff2 ├── graph │ └── dependencies.svg ├── images │ ├── compodoc-vectorise-inverted.png │ ├── compodoc-vectorise-inverted.svg │ ├── compodoc-vectorise.png │ ├── compodoc-vectorise.svg │ ├── coverage-badge-documentation.svg │ └── favicon.ico ├── index.html ├── injectables │ ├── AuthService.html │ ├── AuthStore.html │ ├── DashboardService.html │ ├── LayoutService.html │ └── TicketsService.html ├── interfaces │ ├── AuthPayload.html │ ├── Ticket.html │ ├── TicketListParams.html │ ├── TicketListState.html │ └── TokenDecoded.html ├── js │ ├── compodoc.js │ ├── lazy-load-graphs.js │ ├── libs │ │ ├── EventDispatcher.js │ │ ├── bootstrap-native.js │ │ ├── clipboard.min.js │ │ ├── custom-elements-es5-adapter.js │ │ ├── custom-elements.min.js │ │ ├── d3.v3.min.js │ │ ├── deep-iterator.js │ │ ├── es6-shim.min.js │ │ ├── htmlparser.js │ │ ├── innersvg.js │ │ ├── lit-html.js │ │ ├── prism.js │ │ ├── promise.min.js │ │ ├── svg-pan-zoom.min.js │ │ ├── tablesort.min.js │ │ ├── tablesort.number.min.js │ │ ├── vis.min.js │ │ └── zepto.min.js │ ├── menu-wc.js │ ├── menu-wc_es5.js │ ├── menu.js │ ├── routes.js │ ├── search │ │ ├── lunr.min.js │ │ ├── search-lunr.js │ │ ├── search.js │ │ └── search_index.js │ ├── sourceCode.js │ ├── svg-pan-zoom.controls.js │ ├── tabs.js │ └── tree.js ├── miscellaneous │ ├── enumerations.html │ ├── functions.html │ └── variables.html ├── modules.html ├── overview.html ├── properties.html ├── screenshots │ ├── create-tickets.png │ ├── dashboard.png │ ├── sign-in.png │ ├── tickets.png │ └── uml.svg └── styles │ ├── bootstrap-card.css │ ├── bootstrap.min.css │ ├── compodoc.css │ ├── dark.css │ ├── ionicons.min.css │ ├── laravel.css │ ├── material.css │ ├── original.css │ ├── postmark.css │ ├── prism.css │ ├── readthedocs.css │ ├── reset.css │ ├── stripe.css │ ├── style.css │ ├── tablesort.css │ └── vagrant.css ├── json-server ├── db.json ├── migrations.js ├── package-lock.json ├── package.json └── server.js ├── package.json ├── projects └── flight-tracker-dashboard │ ├── .eslintrc.json │ ├── src │ ├── app │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ ├── core │ │ │ ├── auth │ │ │ │ ├── auth-payload.interface.ts │ │ │ │ ├── auth.guard.ts │ │ │ │ ├── auth.interceptor.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── auth.store.ts │ │ │ │ ├── non-auth.guard.ts │ │ │ │ ├── role.directive.ts │ │ │ │ ├── role.enum.ts │ │ │ │ └── token-decoded.interface.ts │ │ │ ├── core.ts │ │ │ ├── dashboard-layout │ │ │ │ └── dashboard-layout.service.ts │ │ │ ├── dashboard │ │ │ │ └── dashboard-chart-type.enum.ts │ │ │ ├── tickets │ │ │ │ ├── ticket-state.interface.ts │ │ │ │ ├── ticket.interface.ts │ │ │ │ └── tickets.service.ts │ │ │ └── utils │ │ │ │ └── validators │ │ │ │ └── date-range-validator.ts │ │ ├── feature │ │ │ ├── dashboard │ │ │ │ ├── dashboard.routes.ts │ │ │ │ └── dashboard │ │ │ │ │ ├── dashboard-chart.component.ts │ │ │ │ │ ├── dashboard.component.ts │ │ │ │ │ ├── dashboard.service.ts │ │ │ │ │ └── ticket-deals.component.ts │ │ │ ├── sign-in │ │ │ │ ├── sign-in.routes.ts │ │ │ │ └── sign-in │ │ │ │ │ └── sign-in.component.ts │ │ │ └── tickets │ │ │ │ ├── create-ticket │ │ │ │ └── create-ticket.component.ts │ │ │ │ ├── tickets.routes.ts │ │ │ │ └── tickets │ │ │ │ ├── ticket-filters.component.ts │ │ │ │ ├── ticket-list.component.ts │ │ │ │ ├── tickets.component.ts │ │ │ │ └── tickets.store.ts │ │ ├── layout │ │ │ └── dashboard-layout │ │ │ │ ├── dashboard-layout.component.ts │ │ │ │ └── toolbar.component.ts │ │ └── pattern │ │ │ └── ticket-card │ │ │ └── ticket-card.component.ts │ ├── environments │ │ ├── environment.development.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── styles.scss │ └── theme.scss │ ├── tsconfig.app.json │ └── tsconfig.spec.json ├── public └── favicon.ico ├── screenshots ├── create-tickets.png ├── dashboard.png ├── sign-in.png ├── tickets.png └── uml.svg ├── tailwind.config.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/angular.json -------------------------------------------------------------------------------- /deps/flight-tracker-dashboard/_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/deps/flight-tracker-dashboard/_all.png -------------------------------------------------------------------------------- /deps/flight-tracker-dashboard/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/deps/flight-tracker-dashboard/core.png -------------------------------------------------------------------------------- /deps/flight-tracker-dashboard/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/deps/flight-tracker-dashboard/feature.png -------------------------------------------------------------------------------- /deps/flight-tracker-dashboard/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/deps/flight-tracker-dashboard/layout.png -------------------------------------------------------------------------------- /deps/flight-tracker-dashboard/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/deps/flight-tracker-dashboard/pattern.png -------------------------------------------------------------------------------- /deps/flight-tracker-dashboard/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/deps/flight-tracker-dashboard/ui.png -------------------------------------------------------------------------------- /documentation/components/AppComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/AppComponent.html -------------------------------------------------------------------------------- /documentation/components/CreateTicketComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/CreateTicketComponent.html -------------------------------------------------------------------------------- /documentation/components/DashboardChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/DashboardChart.html -------------------------------------------------------------------------------- /documentation/components/DashboardComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/DashboardComponent.html -------------------------------------------------------------------------------- /documentation/components/DashboardLayoutComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/DashboardLayoutComponent.html -------------------------------------------------------------------------------- /documentation/components/SignInComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/SignInComponent.html -------------------------------------------------------------------------------- /documentation/components/TicketCardComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/TicketCardComponent.html -------------------------------------------------------------------------------- /documentation/components/TicketDealsComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/TicketDealsComponent.html -------------------------------------------------------------------------------- /documentation/components/TicketFiltersComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/TicketFiltersComponent.html -------------------------------------------------------------------------------- /documentation/components/TicketListComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/TicketListComponent.html -------------------------------------------------------------------------------- /documentation/components/TicketsComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/TicketsComponent.html -------------------------------------------------------------------------------- /documentation/components/ToolbarComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/components/ToolbarComponent.html -------------------------------------------------------------------------------- /documentation/coverage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/coverage.html -------------------------------------------------------------------------------- /documentation/dependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/dependencies.html -------------------------------------------------------------------------------- /documentation/directives/RoleDirective.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/directives/RoleDirective.html -------------------------------------------------------------------------------- /documentation/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/ionicons.eot -------------------------------------------------------------------------------- /documentation/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/ionicons.svg -------------------------------------------------------------------------------- /documentation/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/ionicons.ttf -------------------------------------------------------------------------------- /documentation/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/ionicons.woff -------------------------------------------------------------------------------- /documentation/fonts/ionicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/ionicons.woff2 -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-300.eot -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-300.svg -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-300.ttf -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-300.woff -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-300.woff2 -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-700.eot -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-700.svg -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-700.ttf -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-700.woff -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-700.woff2 -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-italic.eot -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-italic.svg -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-italic.ttf -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-italic.woff -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-italic.woff2 -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-regular.eot -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-regular.svg -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-regular.ttf -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-regular.woff -------------------------------------------------------------------------------- /documentation/fonts/roboto-v15-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/fonts/roboto-v15-latin-regular.woff2 -------------------------------------------------------------------------------- /documentation/graph/dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/graph/dependencies.svg -------------------------------------------------------------------------------- /documentation/images/compodoc-vectorise-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/images/compodoc-vectorise-inverted.png -------------------------------------------------------------------------------- /documentation/images/compodoc-vectorise-inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/images/compodoc-vectorise-inverted.svg -------------------------------------------------------------------------------- /documentation/images/compodoc-vectorise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/images/compodoc-vectorise.png -------------------------------------------------------------------------------- /documentation/images/compodoc-vectorise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/images/compodoc-vectorise.svg -------------------------------------------------------------------------------- /documentation/images/coverage-badge-documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/images/coverage-badge-documentation.svg -------------------------------------------------------------------------------- /documentation/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/images/favicon.ico -------------------------------------------------------------------------------- /documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/index.html -------------------------------------------------------------------------------- /documentation/injectables/AuthService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/injectables/AuthService.html -------------------------------------------------------------------------------- /documentation/injectables/AuthStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/injectables/AuthStore.html -------------------------------------------------------------------------------- /documentation/injectables/DashboardService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/injectables/DashboardService.html -------------------------------------------------------------------------------- /documentation/injectables/LayoutService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/injectables/LayoutService.html -------------------------------------------------------------------------------- /documentation/injectables/TicketsService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/injectables/TicketsService.html -------------------------------------------------------------------------------- /documentation/interfaces/AuthPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/interfaces/AuthPayload.html -------------------------------------------------------------------------------- /documentation/interfaces/Ticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/interfaces/Ticket.html -------------------------------------------------------------------------------- /documentation/interfaces/TicketListParams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/interfaces/TicketListParams.html -------------------------------------------------------------------------------- /documentation/interfaces/TicketListState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/interfaces/TicketListState.html -------------------------------------------------------------------------------- /documentation/interfaces/TokenDecoded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/interfaces/TokenDecoded.html -------------------------------------------------------------------------------- /documentation/js/compodoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/compodoc.js -------------------------------------------------------------------------------- /documentation/js/lazy-load-graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/lazy-load-graphs.js -------------------------------------------------------------------------------- /documentation/js/libs/EventDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/EventDispatcher.js -------------------------------------------------------------------------------- /documentation/js/libs/bootstrap-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/bootstrap-native.js -------------------------------------------------------------------------------- /documentation/js/libs/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/clipboard.min.js -------------------------------------------------------------------------------- /documentation/js/libs/custom-elements-es5-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/custom-elements-es5-adapter.js -------------------------------------------------------------------------------- /documentation/js/libs/custom-elements.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/custom-elements.min.js -------------------------------------------------------------------------------- /documentation/js/libs/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/d3.v3.min.js -------------------------------------------------------------------------------- /documentation/js/libs/deep-iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/deep-iterator.js -------------------------------------------------------------------------------- /documentation/js/libs/es6-shim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/es6-shim.min.js -------------------------------------------------------------------------------- /documentation/js/libs/htmlparser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/htmlparser.js -------------------------------------------------------------------------------- /documentation/js/libs/innersvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/innersvg.js -------------------------------------------------------------------------------- /documentation/js/libs/lit-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/lit-html.js -------------------------------------------------------------------------------- /documentation/js/libs/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/prism.js -------------------------------------------------------------------------------- /documentation/js/libs/promise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/promise.min.js -------------------------------------------------------------------------------- /documentation/js/libs/svg-pan-zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/svg-pan-zoom.min.js -------------------------------------------------------------------------------- /documentation/js/libs/tablesort.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/tablesort.min.js -------------------------------------------------------------------------------- /documentation/js/libs/tablesort.number.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/tablesort.number.min.js -------------------------------------------------------------------------------- /documentation/js/libs/vis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/vis.min.js -------------------------------------------------------------------------------- /documentation/js/libs/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/libs/zepto.min.js -------------------------------------------------------------------------------- /documentation/js/menu-wc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/menu-wc.js -------------------------------------------------------------------------------- /documentation/js/menu-wc_es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/menu-wc_es5.js -------------------------------------------------------------------------------- /documentation/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/menu.js -------------------------------------------------------------------------------- /documentation/js/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/routes.js -------------------------------------------------------------------------------- /documentation/js/search/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/search/lunr.min.js -------------------------------------------------------------------------------- /documentation/js/search/search-lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/search/search-lunr.js -------------------------------------------------------------------------------- /documentation/js/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/search/search.js -------------------------------------------------------------------------------- /documentation/js/search/search_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/search/search_index.js -------------------------------------------------------------------------------- /documentation/js/sourceCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/sourceCode.js -------------------------------------------------------------------------------- /documentation/js/svg-pan-zoom.controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/svg-pan-zoom.controls.js -------------------------------------------------------------------------------- /documentation/js/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/tabs.js -------------------------------------------------------------------------------- /documentation/js/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/js/tree.js -------------------------------------------------------------------------------- /documentation/miscellaneous/enumerations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/miscellaneous/enumerations.html -------------------------------------------------------------------------------- /documentation/miscellaneous/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/miscellaneous/functions.html -------------------------------------------------------------------------------- /documentation/miscellaneous/variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/miscellaneous/variables.html -------------------------------------------------------------------------------- /documentation/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/modules.html -------------------------------------------------------------------------------- /documentation/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/overview.html -------------------------------------------------------------------------------- /documentation/properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/properties.html -------------------------------------------------------------------------------- /documentation/screenshots/create-tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/screenshots/create-tickets.png -------------------------------------------------------------------------------- /documentation/screenshots/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/screenshots/dashboard.png -------------------------------------------------------------------------------- /documentation/screenshots/sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/screenshots/sign-in.png -------------------------------------------------------------------------------- /documentation/screenshots/tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/screenshots/tickets.png -------------------------------------------------------------------------------- /documentation/screenshots/uml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/screenshots/uml.svg -------------------------------------------------------------------------------- /documentation/styles/bootstrap-card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/bootstrap-card.css -------------------------------------------------------------------------------- /documentation/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/bootstrap.min.css -------------------------------------------------------------------------------- /documentation/styles/compodoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/compodoc.css -------------------------------------------------------------------------------- /documentation/styles/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/dark.css -------------------------------------------------------------------------------- /documentation/styles/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/ionicons.min.css -------------------------------------------------------------------------------- /documentation/styles/laravel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/laravel.css -------------------------------------------------------------------------------- /documentation/styles/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/material.css -------------------------------------------------------------------------------- /documentation/styles/original.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/original.css -------------------------------------------------------------------------------- /documentation/styles/postmark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/postmark.css -------------------------------------------------------------------------------- /documentation/styles/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/prism.css -------------------------------------------------------------------------------- /documentation/styles/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/readthedocs.css -------------------------------------------------------------------------------- /documentation/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/reset.css -------------------------------------------------------------------------------- /documentation/styles/stripe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/stripe.css -------------------------------------------------------------------------------- /documentation/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/style.css -------------------------------------------------------------------------------- /documentation/styles/tablesort.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/tablesort.css -------------------------------------------------------------------------------- /documentation/styles/vagrant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/documentation/styles/vagrant.css -------------------------------------------------------------------------------- /json-server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/json-server/db.json -------------------------------------------------------------------------------- /json-server/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/json-server/migrations.js -------------------------------------------------------------------------------- /json-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/json-server/package-lock.json -------------------------------------------------------------------------------- /json-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/json-server/package.json -------------------------------------------------------------------------------- /json-server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/json-server/server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/package.json -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/.eslintrc.json -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/app.config.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/app.routes.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/auth/auth-payload.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/auth/auth-payload.interface.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/auth/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/auth/auth.guard.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/auth/auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/auth/auth.interceptor.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/auth/auth.service.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/auth/auth.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/auth/auth.store.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/auth/non-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/auth/non-auth.guard.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/auth/role.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/auth/role.directive.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/auth/role.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/auth/role.enum.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/auth/token-decoded.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/auth/token-decoded.interface.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/core.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/dashboard-layout/dashboard-layout.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/dashboard-layout/dashboard-layout.service.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/dashboard/dashboard-chart-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/dashboard/dashboard-chart-type.enum.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/tickets/ticket-state.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/tickets/ticket-state.interface.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/tickets/ticket.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/tickets/ticket.interface.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/tickets/tickets.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/tickets/tickets.service.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/core/utils/validators/date-range-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/core/utils/validators/date-range-validator.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/dashboard/dashboard.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/dashboard/dashboard.routes.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/dashboard/dashboard/dashboard-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/dashboard/dashboard/dashboard-chart.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/dashboard/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/dashboard/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/dashboard/dashboard/dashboard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/dashboard/dashboard/dashboard.service.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/dashboard/dashboard/ticket-deals.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/dashboard/dashboard/ticket-deals.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/sign-in/sign-in.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/sign-in/sign-in.routes.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/sign-in/sign-in/sign-in.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/sign-in/sign-in/sign-in.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/tickets/create-ticket/create-ticket.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/tickets/create-ticket/create-ticket.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/tickets/tickets.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/tickets/tickets.routes.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/tickets/tickets/ticket-filters.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/tickets/tickets/ticket-filters.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/tickets/tickets/ticket-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/tickets/tickets/ticket-list.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/tickets/tickets/tickets.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/tickets/tickets/tickets.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/feature/tickets/tickets/tickets.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/feature/tickets/tickets/tickets.store.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/layout/dashboard-layout/dashboard-layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/layout/dashboard-layout/dashboard-layout.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/layout/dashboard-layout/toolbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/layout/dashboard-layout/toolbar.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/app/pattern/ticket-card/ticket-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/app/pattern/ticket-card/ticket-card.component.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/environments/environment.development.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | apiUrl: 'http://localhost:3000', 3 | }; 4 | -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | apiUrl: 'http://localhost:3000', 3 | }; 4 | -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/index.html -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/main.ts -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/styles.scss -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/src/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/src/theme.scss -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/tsconfig.app.json -------------------------------------------------------------------------------- /projects/flight-tracker-dashboard/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/projects/flight-tracker-dashboard/tsconfig.spec.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /screenshots/create-tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/screenshots/create-tickets.png -------------------------------------------------------------------------------- /screenshots/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/screenshots/dashboard.png -------------------------------------------------------------------------------- /screenshots/sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/screenshots/sign-in.png -------------------------------------------------------------------------------- /screenshots/tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/screenshots/tickets.png -------------------------------------------------------------------------------- /screenshots/uml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/screenshots/uml.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiorelozere/flight-tracker/HEAD/tsconfig.json --------------------------------------------------------------------------------