├── .deepsource.toml ├── .github └── workflows │ ├── auto-merge-dependabot.yml │ └── node.js.yml ├── .gitignore ├── .husky ├── pre-commit └── pre-push ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── backend-app ├── .deepsource.toml ├── .dockerignore ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .mocharc.json ├── .npmrc ├── .prettierrc.json ├── Dockerfile ├── _config.yml ├── app.ts ├── config │ ├── app_config.ts │ ├── logger_config.ts │ ├── nodemon.json │ └── nodemon.tsoa.json ├── constants │ ├── actions.ts │ └── meta_data.ts ├── controllers │ ├── auth_controllers │ │ ├── auth_controller.ts │ │ ├── github_controller.ts │ │ └── password_management.ts │ ├── base_controller.ts │ ├── calendar_controllers │ │ ├── calendar_base_controller.ts │ │ ├── calendar_validators.ts │ │ └── participents_controller.ts │ ├── notification_controller.ts │ └── users_controllers │ │ ├── admin_controller.ts │ │ ├── super_admin_controller.ts │ │ └── user_controller.ts ├── decorators │ └── inspect_authority.ts ├── docs │ ├── full-logo.jpg │ └── logo.png ├── interfaces │ ├── github_repo.ts │ ├── models │ │ ├── i_calendar.ts │ │ ├── i_event.ts │ │ ├── i_role.ts │ │ └── i_user.ts │ └── vendors.ts ├── middlewares │ ├── api_version_controll.ts │ ├── authentications.ts │ ├── global_error_handler.ts │ ├── morgan.ts │ └── rate_limit.ts ├── models │ ├── calendar │ │ ├── calendar_model.ts │ │ └── event_model.ts │ ├── notifications │ │ └── notification_model.ts │ └── user │ │ ├── role_model.ts │ │ └── user_model.ts ├── package-lock.json ├── package.json ├── seeds │ ├── index.ts │ ├── setup_seed.ts │ └── users.json ├── server.ts ├── target │ └── npmlist.json ├── tests │ ├── db_config.spec.ts │ ├── e2e │ │ └── auth │ │ │ └── auth.spec.ts │ ├── env.test.ts │ └── init │ │ └── x.spec.ts ├── tsconfig.json ├── tsoa.json ├── typings │ ├── express-serve-static-core.d.ts │ └── xss-clean.d.ts └── utils │ ├── TaskEmitter.ts │ ├── api_features.ts │ ├── app_error.ts │ ├── authorization │ ├── auth_utils.ts │ ├── generate_tokens.ts │ ├── github.ts │ ├── roles │ │ ├── create_roles.ts │ │ └── role.ts │ └── validate_actions.ts │ ├── create_default_user.ts │ ├── logger.ts │ ├── notification │ └── notification.ts │ ├── register_paths.ts │ ├── searchCookie.ts │ └── swagger │ └── index.ts ├── docker-compose.yml └── frontend-app ├── .dockerignore ├── .env.local ├── .eslintrc.json ├── .gitignore ├── Dockerfile ├── README.md ├── mui-icons.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── logo.jpg ├── next.svg └── vercel.svg ├── src ├── app │ ├── calendar │ │ ├── loading.tsx │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── home │ │ └── page.tsx │ ├── layout.tsx │ ├── login │ │ └── page.tsx │ ├── page.tsx │ └── signup │ │ └── page.tsx ├── components │ ├── NavBar.tsx │ └── ui │ │ └── calendar.tsx ├── lib │ └── utils.ts └── middleware.ts ├── tailwind.config.js ├── tsconfig.json └── types.d.ts /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/.github/workflows/auto-merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | cd backend-app 5 | npm test 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/README.md -------------------------------------------------------------------------------- /backend-app/.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/.deepsource.toml -------------------------------------------------------------------------------- /backend-app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/.dockerignore -------------------------------------------------------------------------------- /backend-app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/.env.example -------------------------------------------------------------------------------- /backend-app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/.eslintrc.js -------------------------------------------------------------------------------- /backend-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/.gitignore -------------------------------------------------------------------------------- /backend-app/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/.mocharc.json -------------------------------------------------------------------------------- /backend-app/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /backend-app/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/.prettierrc.json -------------------------------------------------------------------------------- /backend-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/Dockerfile -------------------------------------------------------------------------------- /backend-app/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/_config.yml -------------------------------------------------------------------------------- /backend-app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/app.ts -------------------------------------------------------------------------------- /backend-app/config/app_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/config/app_config.ts -------------------------------------------------------------------------------- /backend-app/config/logger_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/config/logger_config.ts -------------------------------------------------------------------------------- /backend-app/config/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/config/nodemon.json -------------------------------------------------------------------------------- /backend-app/config/nodemon.tsoa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/config/nodemon.tsoa.json -------------------------------------------------------------------------------- /backend-app/constants/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/constants/actions.ts -------------------------------------------------------------------------------- /backend-app/constants/meta_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/constants/meta_data.ts -------------------------------------------------------------------------------- /backend-app/controllers/auth_controllers/auth_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/controllers/auth_controllers/auth_controller.ts -------------------------------------------------------------------------------- /backend-app/controllers/auth_controllers/github_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/controllers/auth_controllers/github_controller.ts -------------------------------------------------------------------------------- /backend-app/controllers/auth_controllers/password_management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/controllers/auth_controllers/password_management.ts -------------------------------------------------------------------------------- /backend-app/controllers/base_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/controllers/base_controller.ts -------------------------------------------------------------------------------- /backend-app/controllers/calendar_controllers/calendar_base_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/controllers/calendar_controllers/calendar_base_controller.ts -------------------------------------------------------------------------------- /backend-app/controllers/calendar_controllers/calendar_validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/controllers/calendar_controllers/calendar_validators.ts -------------------------------------------------------------------------------- /backend-app/controllers/calendar_controllers/participents_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/controllers/calendar_controllers/participents_controller.ts -------------------------------------------------------------------------------- /backend-app/controllers/notification_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/controllers/notification_controller.ts -------------------------------------------------------------------------------- /backend-app/controllers/users_controllers/admin_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/controllers/users_controllers/admin_controller.ts -------------------------------------------------------------------------------- /backend-app/controllers/users_controllers/super_admin_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/controllers/users_controllers/super_admin_controller.ts -------------------------------------------------------------------------------- /backend-app/controllers/users_controllers/user_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/controllers/users_controllers/user_controller.ts -------------------------------------------------------------------------------- /backend-app/decorators/inspect_authority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/decorators/inspect_authority.ts -------------------------------------------------------------------------------- /backend-app/docs/full-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/docs/full-logo.jpg -------------------------------------------------------------------------------- /backend-app/docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/docs/logo.png -------------------------------------------------------------------------------- /backend-app/interfaces/github_repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/interfaces/github_repo.ts -------------------------------------------------------------------------------- /backend-app/interfaces/models/i_calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/interfaces/models/i_calendar.ts -------------------------------------------------------------------------------- /backend-app/interfaces/models/i_event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/interfaces/models/i_event.ts -------------------------------------------------------------------------------- /backend-app/interfaces/models/i_role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/interfaces/models/i_role.ts -------------------------------------------------------------------------------- /backend-app/interfaces/models/i_user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/interfaces/models/i_user.ts -------------------------------------------------------------------------------- /backend-app/interfaces/vendors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/interfaces/vendors.ts -------------------------------------------------------------------------------- /backend-app/middlewares/api_version_controll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/middlewares/api_version_controll.ts -------------------------------------------------------------------------------- /backend-app/middlewares/authentications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/middlewares/authentications.ts -------------------------------------------------------------------------------- /backend-app/middlewares/global_error_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/middlewares/global_error_handler.ts -------------------------------------------------------------------------------- /backend-app/middlewares/morgan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/middlewares/morgan.ts -------------------------------------------------------------------------------- /backend-app/middlewares/rate_limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/middlewares/rate_limit.ts -------------------------------------------------------------------------------- /backend-app/models/calendar/calendar_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/models/calendar/calendar_model.ts -------------------------------------------------------------------------------- /backend-app/models/calendar/event_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/models/calendar/event_model.ts -------------------------------------------------------------------------------- /backend-app/models/notifications/notification_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/models/notifications/notification_model.ts -------------------------------------------------------------------------------- /backend-app/models/user/role_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/models/user/role_model.ts -------------------------------------------------------------------------------- /backend-app/models/user/user_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/models/user/user_model.ts -------------------------------------------------------------------------------- /backend-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/package-lock.json -------------------------------------------------------------------------------- /backend-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/package.json -------------------------------------------------------------------------------- /backend-app/seeds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/seeds/index.ts -------------------------------------------------------------------------------- /backend-app/seeds/setup_seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/seeds/setup_seed.ts -------------------------------------------------------------------------------- /backend-app/seeds/users.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /backend-app/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/server.ts -------------------------------------------------------------------------------- /backend-app/target/npmlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/target/npmlist.json -------------------------------------------------------------------------------- /backend-app/tests/db_config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/tests/db_config.spec.ts -------------------------------------------------------------------------------- /backend-app/tests/e2e/auth/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/tests/e2e/auth/auth.spec.ts -------------------------------------------------------------------------------- /backend-app/tests/env.test.ts: -------------------------------------------------------------------------------- 1 | process.env.NODE_ENV = 'test'; 2 | -------------------------------------------------------------------------------- /backend-app/tests/init/x.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/tests/init/x.spec.ts -------------------------------------------------------------------------------- /backend-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/tsconfig.json -------------------------------------------------------------------------------- /backend-app/tsoa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/tsoa.json -------------------------------------------------------------------------------- /backend-app/typings/express-serve-static-core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/typings/express-serve-static-core.d.ts -------------------------------------------------------------------------------- /backend-app/typings/xss-clean.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/typings/xss-clean.d.ts -------------------------------------------------------------------------------- /backend-app/utils/TaskEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/TaskEmitter.ts -------------------------------------------------------------------------------- /backend-app/utils/api_features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/api_features.ts -------------------------------------------------------------------------------- /backend-app/utils/app_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/app_error.ts -------------------------------------------------------------------------------- /backend-app/utils/authorization/auth_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/authorization/auth_utils.ts -------------------------------------------------------------------------------- /backend-app/utils/authorization/generate_tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/authorization/generate_tokens.ts -------------------------------------------------------------------------------- /backend-app/utils/authorization/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/authorization/github.ts -------------------------------------------------------------------------------- /backend-app/utils/authorization/roles/create_roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/authorization/roles/create_roles.ts -------------------------------------------------------------------------------- /backend-app/utils/authorization/roles/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/authorization/roles/role.ts -------------------------------------------------------------------------------- /backend-app/utils/authorization/validate_actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/authorization/validate_actions.ts -------------------------------------------------------------------------------- /backend-app/utils/create_default_user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/create_default_user.ts -------------------------------------------------------------------------------- /backend-app/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/logger.ts -------------------------------------------------------------------------------- /backend-app/utils/notification/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/notification/notification.ts -------------------------------------------------------------------------------- /backend-app/utils/register_paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/register_paths.ts -------------------------------------------------------------------------------- /backend-app/utils/searchCookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/searchCookie.ts -------------------------------------------------------------------------------- /backend-app/utils/swagger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/backend-app/utils/swagger/index.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend-app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/.dockerignore -------------------------------------------------------------------------------- /frontend-app/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/.env.local -------------------------------------------------------------------------------- /frontend-app/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/.gitignore -------------------------------------------------------------------------------- /frontend-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/Dockerfile -------------------------------------------------------------------------------- /frontend-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/README.md -------------------------------------------------------------------------------- /frontend-app/mui-icons.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/mui-icons.d.ts -------------------------------------------------------------------------------- /frontend-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/next.config.js -------------------------------------------------------------------------------- /frontend-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/package-lock.json -------------------------------------------------------------------------------- /frontend-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/package.json -------------------------------------------------------------------------------- /frontend-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/postcss.config.js -------------------------------------------------------------------------------- /frontend-app/public/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/public/logo.jpg -------------------------------------------------------------------------------- /frontend-app/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/public/next.svg -------------------------------------------------------------------------------- /frontend-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/public/vercel.svg -------------------------------------------------------------------------------- /frontend-app/src/app/calendar/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/app/calendar/loading.tsx -------------------------------------------------------------------------------- /frontend-app/src/app/calendar/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/app/calendar/page.tsx -------------------------------------------------------------------------------- /frontend-app/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/app/favicon.ico -------------------------------------------------------------------------------- /frontend-app/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/app/globals.css -------------------------------------------------------------------------------- /frontend-app/src/app/home/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/app/home/page.tsx -------------------------------------------------------------------------------- /frontend-app/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/app/layout.tsx -------------------------------------------------------------------------------- /frontend-app/src/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/app/login/page.tsx -------------------------------------------------------------------------------- /frontend-app/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/app/page.tsx -------------------------------------------------------------------------------- /frontend-app/src/app/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/app/signup/page.tsx -------------------------------------------------------------------------------- /frontend-app/src/components/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/components/NavBar.tsx -------------------------------------------------------------------------------- /frontend-app/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /frontend-app/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend-app/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/src/middleware.ts -------------------------------------------------------------------------------- /frontend-app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/tailwind.config.js -------------------------------------------------------------------------------- /frontend-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/tsconfig.json -------------------------------------------------------------------------------- /frontend-app/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISIL-ESTE/Student-Workflow-Organizer/HEAD/frontend-app/types.d.ts --------------------------------------------------------------------------------