├── .env ├── .eslintrc.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .scrutinizer.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── Procfile ├── README.md ├── docker-compose.yml ├── docs ├── deployment.md └── dev.md ├── e2e ├── auth.setup.js ├── customers.spec.js ├── faircalendar.spec.js ├── home.spec.js ├── login.spec.js ├── nav.spec.js └── util.js ├── migrations ├── 1575020116603-InitModel.ts ├── 1604827206393-ModelsRestructuration.ts ├── 1605272527582-CooperativeSettings.ts ├── 1605556978071-EventBillable.ts ├── 1606221236110-Invoice.ts ├── 1606403084585-InvoiceUnitPrice.ts ├── 1607088934563-ChangeUserAdministrativeJoiningDateType.ts ├── 1608728416097-MealTicketRemoval.ts ├── 1633700963101-Contact.ts ├── 1633787043133-make_meal_ticket_removal_comment_nullable.ts ├── 1637158054129-AddUserAdministrativeWorkingTime.ts ├── 1645798997884-add-contact-contactedby.ts ├── 1647071905784-DropPaySlip.ts ├── 1648283366970-DropProjectDayDuration.ts ├── 1650636333167-UserSavingsRecord.ts ├── 1651234850677-IllimitedLeaveType.ts ├── 1651674281488-InterestRate.ts ├── 1676042443249-upgrade_database.ts ├── 1676042513328-remove_john_doe.ts ├── 1678458554609-removeInvoices.ts ├── 1679323604719-add_sustainable_mobility_fee_column_to_user_administrative.ts ├── 1687944271705-removeQuote.ts ├── 1687946137748-removeBillable.ts ├── 1687953603202-removeDailyRate.ts ├── 1687959453344-removeContacts.ts ├── 1695400222241-removeFile.ts ├── 1699290758562-dropAddress.ts ├── 1703240232765-addSession.ts ├── 1716653153304-projectActive.ts ├── 1717147942177-create-notification-table.ts ├── 1718114720685-add-postponed-worked-free-day-leave-request-type.ts └── 1719581515131-addRelocationLeave.ts ├── nest-cli.json ├── package.json ├── playwright.config.ts ├── src ├── .eslintignore ├── Application │ ├── Common │ │ ├── MonthDate.spec.ts │ │ ├── MonthDate.ts │ │ └── Pagination.ts │ ├── Customer │ │ ├── Command │ │ │ ├── CreateCustomerCommand.ts │ │ │ ├── CreateCustomerCommandHandler.spec.ts │ │ │ ├── CreateCustomerCommandHandler.ts │ │ │ ├── UpdateCustomerCommand.ts │ │ │ ├── UpdateCustomerCommandHandler.spec.ts │ │ │ └── UpdateCustomerCommandHandler.ts │ │ ├── Query │ │ │ ├── GetCustomerByIdQuery.ts │ │ │ ├── GetCustomerByIdQueryHandler.spec.ts │ │ │ ├── GetCustomerByIdQueryHandler.ts │ │ │ ├── GetCustomersQuery.ts │ │ │ ├── GetCustomersQueryHandler.spec.ts │ │ │ └── GetCustomersQueryHandler.ts │ │ └── View │ │ │ └── CustomerView.ts │ ├── FairCalendar │ │ ├── Command │ │ │ ├── AbstractProjectAndTaskGetter.ts │ │ │ ├── AddEventCommand.ts │ │ │ ├── AddEventCommandHandler.spec.ts │ │ │ ├── AddEventCommandHandler.ts │ │ │ ├── DeleteEventCommand.ts │ │ │ ├── DeleteEventCommandHandler.spec.ts │ │ │ ├── DeleteEventCommandHandler.ts │ │ │ ├── UpdateEventCommand.ts │ │ │ ├── UpdateEventCommandHandler.spec.ts │ │ │ └── UpdateEventCommandHandler.ts │ │ ├── Query │ │ │ ├── GetEventByIdQuery.ts │ │ │ ├── GetEventByIdQueryHandler.spec.ts │ │ │ ├── GetEventByIdQueryHandler.ts │ │ │ ├── GetMonthlyFairCalendarQuery.ts │ │ │ ├── GetMonthlyFairCalendarQueryHandler.spec.ts │ │ │ └── GetMonthlyFairCalendarQueryHandler.ts │ │ └── View │ │ │ ├── AddEventsView.ts │ │ │ ├── EventView.ts │ │ │ ├── FairCalendarView.ts │ │ │ └── MonthlyEventsView.ts │ ├── HumanResource │ │ ├── Leave │ │ │ ├── Command │ │ │ │ ├── AcceptLeaveRequestCommand.ts │ │ │ │ ├── AcceptLeaveRequestCommandHandler.spec.ts │ │ │ │ ├── AcceptLeaveRequestCommandHandler.ts │ │ │ │ ├── CreateLeaveRequestCommand.ts │ │ │ │ ├── CreateLeaveRequestCommandHandler.spec.ts │ │ │ │ ├── CreateLeaveRequestCommandHandler.ts │ │ │ │ ├── DeleteLeaveRequestCommand.ts │ │ │ │ ├── DeleteLeaveRequestCommandHandler.spec.ts │ │ │ │ ├── DeleteLeaveRequestCommandHandler.ts │ │ │ │ ├── RefuseLeaveRequestCommand.ts │ │ │ │ ├── RefuseLeaveRequestCommandHandler.spec.ts │ │ │ │ ├── RefuseLeaveRequestCommandHandler.ts │ │ │ │ ├── UpdateLeaveRequestCommand.Handler.spec.ts │ │ │ │ ├── UpdateLeaveRequestCommand.ts │ │ │ │ └── UpdateLeaveRequestCommandHandler.ts │ │ │ ├── Event │ │ │ │ ├── AcceptedLeaveRequestEvent.ts │ │ │ │ ├── AcceptedLeaveRequestEventListener.spec.ts │ │ │ │ └── AcceptedLeaveRequestEventListener.ts │ │ │ ├── Query │ │ │ │ ├── GetLeaveRequestByIdQuery.ts │ │ │ │ ├── GetLeaveRequestByIdQueryHandler.spec.ts │ │ │ │ ├── GetLeaveRequestByIdQueryHandler.ts │ │ │ │ ├── GetLeaveRequestsOverviewQuery.ts │ │ │ │ ├── GetLeaveRequestsOverviewQueryHandler.spec.ts │ │ │ │ ├── GetLeaveRequestsOverviewQueryHandler.ts │ │ │ │ ├── GetLeaveRequestsQuery.ts │ │ │ │ ├── GetLeaveRequestsQueryHandler.spec.ts │ │ │ │ ├── GetLeaveRequestsQueryHandler.ts │ │ │ │ ├── GetLeavesByMonthQuery.ts │ │ │ │ ├── GetLeavesByMonthQueryHandler.spec.ts │ │ │ │ ├── GetLeavesByMonthQueryHandler.ts │ │ │ │ ├── GetLeavesCalendarQuery.ts │ │ │ │ ├── GetLeavesCalendarQueryHandler.spec.ts │ │ │ │ ├── GetLeavesCalendarQueryHandler.ts │ │ │ │ ├── GetPendingLeaveRequestsCountQuery.ts │ │ │ │ ├── GetPendingLeaveRequestsCountQueryHandler.spec.ts │ │ │ │ └── GetPendingLeaveRequestsCountQueryHandler.ts │ │ │ └── View │ │ │ │ ├── LeaveRequestDetailView.ts │ │ │ │ ├── LeaveRequestSlotView.ts │ │ │ │ └── LeaveRequestView.ts │ │ ├── MealTicket │ │ │ ├── Command │ │ │ │ ├── CreateMealTicketRemovalCommand.ts │ │ │ │ ├── CreateMealTicketRemovalCommandHandler.spec.ts │ │ │ │ └── CreateMealTicketRemovalCommandHandler.ts │ │ │ ├── Query │ │ │ │ ├── GetMealTicketsPerMonthQuery.ts │ │ │ │ ├── GetMealTicketsPerMonthQueryHandler.spec.ts │ │ │ │ └── GetMealTicketsPerMonthQueryHandler.ts │ │ │ └── Views │ │ │ │ └── MealTicketsPerMonthView.ts │ │ ├── Payslip │ │ │ ├── Query │ │ │ │ ├── GetUserElementsQueryHandler.spec.ts │ │ │ │ ├── GetUsersElementsQuery.ts │ │ │ │ └── GetUsersElementsQueryHandler.ts │ │ │ └── View │ │ │ │ ├── UserElementsView.ts │ │ │ │ └── UserLeavesView.ts │ │ ├── Savings │ │ │ └── Command │ │ │ │ ├── IncreaseUserSavingsRecordCommand.ts │ │ │ │ ├── IncreaseUserSavingsRecordCommandHandler.spec.ts │ │ │ │ └── IncreaseUserSavingsRecordCommandHandler.ts │ │ └── User │ │ │ ├── Command │ │ │ ├── CreateUserCommand.ts │ │ │ ├── CreateUserCommandHandler.spec.ts │ │ │ ├── CreateUserCommandHandler.ts │ │ │ ├── UpdateProfileCommand.ts │ │ │ ├── UpdateProfileCommandHandler.spec.ts │ │ │ ├── UpdateProfileCommandHandler.ts │ │ │ ├── UpdateUserCommand.ts │ │ │ ├── UpdateUserCommandHandler.spec.ts │ │ │ └── UpdateUserCommandHandler.ts │ │ │ ├── Query │ │ │ ├── GetUserAdministrativeByIdQuery.ts │ │ │ ├── GetUserAdministrativeByIdQueryHandler.ts │ │ │ ├── GetUserByIdQuery.ts │ │ │ ├── GetUserByIdQueryHandler.spec.ts │ │ │ ├── GetUserByIdQueryHandler.ts │ │ │ ├── GetUsersQuery.ts │ │ │ ├── GetUsersQueryHandler.spec.ts │ │ │ ├── GetUsersQueryHandler.ts │ │ │ ├── LoginQuery.ts │ │ │ ├── LoginQueryHandler.spec.ts │ │ │ └── LoginQueryHandler.ts │ │ │ └── View │ │ │ ├── AuthenticatedView.ts │ │ │ ├── UserAdministrativeView.ts │ │ │ ├── UserSummaryView.ts │ │ │ └── UserView.ts │ ├── ICommand.ts │ ├── ICommandBus.ts │ ├── IDateUtils.ts │ ├── IEvent.ts │ ├── IEventBus.ts │ ├── IMattermostNotifier.ts │ ├── IPasswordEncoder.ts │ ├── IQuery.ts │ ├── IQueryBus.ts │ ├── Notification │ │ └── Command │ │ │ ├── CreateNotificationCommand.ts │ │ │ └── CreateNotificationCommandHandler.ts │ ├── Project │ │ ├── Command │ │ │ ├── CreateProjectCommand.ts │ │ │ ├── CreateProjectCommandHandler.spec.ts │ │ │ ├── CreateProjectCommandHandler.ts │ │ │ ├── UpdateProjectCommand.ts │ │ │ ├── UpdateProjectCommandHandler.spec.ts │ │ │ └── UpdateProjectCommandHandler.ts │ │ ├── Query │ │ │ ├── GetProjectByIdQuery.ts │ │ │ ├── GetProjectByIdQueryHandler.spec.ts │ │ │ ├── GetProjectByIdQueryHandler.ts │ │ │ ├── GetProjectsQuery.ts │ │ │ ├── GetProjectsQueryHandler.spec.ts │ │ │ └── GetProjectsQueryHandler.ts │ │ └── View │ │ │ └── ProjectView.ts │ ├── Settings │ │ ├── Query │ │ │ ├── GetCooperativeQuery.ts │ │ │ ├── GetCooperativeQueryHandler.spec.ts │ │ │ └── GetCooperativeQueryHandler.ts │ │ └── View │ │ │ └── CooperativeView.ts │ └── Task │ │ ├── Command │ │ ├── CreateTaskCommand.ts │ │ ├── CreateTaskCommandHandler.spec.ts │ │ ├── CreateTaskCommandHandler.ts │ │ ├── UpdateTaskCommand.ts │ │ ├── UpdateTaskCommandHandler.spec.ts │ │ └── UpdateTaskCommandHandler.ts │ │ ├── Query │ │ ├── GetTaskByIdQuery.ts │ │ ├── GetTaskByIdQueryHandler.spec.ts │ │ ├── GetTaskByIdQueryHandler.ts │ │ ├── GetTasksQuery.ts │ │ ├── GetTasksQueryHandler.spec.ts │ │ └── GetTasksQueryHandler.ts │ │ └── View │ │ └── TaskView.ts ├── DataSeeding │ ├── Factories │ │ ├── CustomerFactory.ts │ │ ├── UserAdministrativeFactory.ts │ │ └── UserFactory.ts │ └── Seeders │ │ ├── AppSeeder.ts │ │ ├── CustomerSeeder.ts │ │ └── UserSeeder.ts ├── Domain │ ├── Customer │ │ ├── Customer.entity.spec.ts │ │ ├── Customer.entity.ts │ │ ├── Exception │ │ │ ├── CustomerAlreadyExistException.ts │ │ │ └── CustomerNotFoundException.ts │ │ ├── Repository │ │ │ └── ICustomerRepository.ts │ │ └── Specification │ │ │ ├── IsCustomerAlreadyExist.spec.ts │ │ │ └── IsCustomerAlreadyExist.ts │ ├── FairCalendar │ │ ├── Event.entity.spec.ts │ │ ├── Event.entity.ts │ │ ├── Exception │ │ │ ├── EventDoesntBelongToUserException.ts │ │ │ ├── EventNotFoundException.ts │ │ │ ├── EventsOrLeavesAlreadyExistForThisPeriodException.ts │ │ │ ├── MaximumEventReachedException.ts │ │ │ ├── NoDateDuringThisPeriodException.ts │ │ │ └── ProjectOrTaskMissingException.ts │ │ ├── FairCalendarOverviewFactory.spec.ts │ │ ├── FairCalendarOverviewFactory.ts │ │ ├── ICalendarOverview.ts │ │ ├── Repository │ │ │ └── IEventRepository.ts │ │ └── Specification │ │ │ ├── DoesEventBelongToUser.spec.ts │ │ │ ├── DoesEventBelongToUser.ts │ │ │ ├── DoesLeaveExistForPeriod.spec.ts │ │ │ ├── DoesLeaveExistForPeriod.ts │ │ │ ├── IsMaximumTimeSpentReached.spec.ts │ │ │ └── IsMaximumTimeSpentReached.ts │ ├── HumanResource │ │ ├── Leave │ │ │ ├── Converter │ │ │ │ ├── LeaveRequestToLeavesConverter.spec.ts │ │ │ │ └── LeaveRequestToLeavesConverter.ts │ │ │ ├── Exception │ │ │ │ ├── LeaveRequestAlreadyExistForThisPeriodException.ts │ │ │ │ ├── LeaveRequestCantBeModeratedException.ts │ │ │ │ ├── LeaveRequestCantBeRemovedException.ts │ │ │ │ ├── LeaveRequestCantBeUpdatedException.ts │ │ │ │ └── LeaveRequestNotFoundException.ts │ │ │ ├── ILeaveRequestsOverview.ts │ │ │ ├── Leave.entity.spec.ts │ │ │ ├── Leave.entity.ts │ │ │ ├── LeaveRequest.entity.spec.ts │ │ │ ├── LeaveRequest.entity.ts │ │ │ ├── LeavesCollection.ts │ │ │ ├── Repository │ │ │ │ ├── ILeaveRepository.ts │ │ │ │ └── ILeaveRequestRepository.ts │ │ │ ├── Specification │ │ │ │ ├── CanLeaveRequestBeCancelled.spec.ts │ │ │ │ ├── CanLeaveRequestBeCancelled.ts │ │ │ │ ├── CanLeaveRequestBeModerated.spec.ts │ │ │ │ ├── CanLeaveRequestBeModerated.ts │ │ │ │ ├── DoesLeaveRequestBelongToUser.spec.ts │ │ │ │ ├── DoesLeaveRequestBelongToUser.ts │ │ │ │ ├── DoesLeaveRequestExistForPeriod.spec.ts │ │ │ │ └── DoesLeaveRequestExistForPeriod.ts │ │ │ ├── UserLeavesCollection.spec.ts │ │ │ └── UserLeavesCollection.ts │ │ ├── MealTicket │ │ │ ├── Exception │ │ │ │ ├── MealTicketRemovalAlreadyExistException.ts │ │ │ │ └── NotAWorkingDateException.ts │ │ │ ├── MealTicketRemoval.entity.spec.ts │ │ │ ├── MealTicketRemoval.entity.ts │ │ │ ├── Repository │ │ │ │ └── IMealTicketRemovalRepository.ts │ │ │ └── Specification │ │ │ │ ├── IsMealTicketRemovalAlreadyExist.ts │ │ │ │ └── IsMealTicketRemovalExist.spec.ts │ │ ├── Savings │ │ │ ├── Exception │ │ │ │ └── InterestRateNotFoundException.ts │ │ │ ├── InterestRate.entity.spec.ts │ │ │ ├── InterestRate.entity.ts │ │ │ ├── Repository │ │ │ │ ├── IInterestRateRepository.ts │ │ │ │ └── IUserSavingsRecordRepository.ts │ │ │ ├── UserSavingsRecord.entity.spec.ts │ │ │ └── UserSavingsRecord.entity.ts │ │ └── User │ │ │ ├── Exception │ │ │ ├── EmailAlreadyExistException.ts │ │ │ ├── PasswordNotMatchException.ts │ │ │ ├── UserAdministrativeMissingException.ts │ │ │ └── UserNotFoundException.ts │ │ │ ├── Repository │ │ │ ├── IUserAdministrativeRepository.ts │ │ │ └── IUserRepository.ts │ │ │ ├── Specification │ │ │ ├── IsEmailAlreadyExist.spec.ts │ │ │ └── IsEmailAlreadyExist.ts │ │ │ ├── User.entity.spec.ts │ │ │ ├── User.entity.ts │ │ │ ├── UserAdministrative.entity.spec.ts │ │ │ └── UserAdministrative.entity.ts │ ├── Notification │ │ ├── Exception │ │ │ └── NotificationFailureException.ts │ │ ├── Notification.entity.spec.ts │ │ ├── Notification.entity.ts │ │ └── Repository │ │ │ └── INotificationRepository.ts │ ├── Project │ │ ├── Exception │ │ │ ├── ProjectAlreadyExistException.ts │ │ │ └── ProjectNotFoundException.ts │ │ ├── Project.entity.spec.ts │ │ ├── Project.entity.ts │ │ ├── Repository │ │ │ └── IProjectRepository.ts │ │ └── Specification │ │ │ ├── IsProjectAlreadyExist.spec.ts │ │ │ └── IsProjectAlreadyExist.ts │ ├── Session │ │ └── Session.entity.ts │ ├── Settings │ │ ├── Cooperative.entity.spec.ts │ │ ├── Cooperative.entity.ts │ │ └── Repository │ │ │ ├── CooperativeNotFoundException.ts │ │ │ └── ICooperativeRepository.ts │ └── Task │ │ ├── Exception │ │ ├── TaskAlreadyExistException.ts │ │ └── TaskNotFoundException.ts │ │ ├── Repository │ │ └── ITaskRepository.ts │ │ ├── Specification │ │ ├── IsTaskAlreadyExist.spec.ts │ │ └── IsTaskAlreadyExist.ts │ │ ├── Task.entity.spec.ts │ │ └── Task.entity.ts ├── Infrastructure │ ├── Adapter │ │ ├── CommandBusAdapter.ts │ │ ├── DateUtilsAdapter.spec.ts │ │ ├── DateUtilsAdapter.ts │ │ ├── EventBusAdapter.ts │ │ ├── FluentTranslatorAdapter.ts │ │ ├── MattermostNotifier.ts │ │ ├── PasswordEncoderAdapter.spec.ts │ │ ├── PasswordEncoderAdapter.ts │ │ └── QueryBusAdapter.ts │ ├── Common │ │ ├── DTO │ │ │ ├── IdDTO.spec.ts │ │ │ ├── IdDTO.ts │ │ │ ├── PaginationDTO.spec.ts │ │ │ └── PaginationDTO.ts │ │ ├── ExceptionFilter │ │ │ ├── AuthRequiredFilter.ts │ │ │ └── UnexpectedErrorFilter.ts │ │ ├── ExtendedRouting │ │ │ ├── RouteNameResolver.ts │ │ │ ├── WithName.ts │ │ │ └── extendedRouting.module.ts │ │ ├── Utils │ │ │ ├── Array.spec.ts │ │ │ ├── ArrayUtils.ts │ │ │ ├── dateUtils.ts │ │ │ └── formatUtils.ts │ │ └── Validator │ │ │ ├── DateGreaterOrEqualThan.ts │ │ │ ├── IsEmailOrEmpty.ts │ │ │ └── IsPhoneNumberOrEmpty.ts │ ├── Customer │ │ ├── Controller │ │ │ ├── AddCustomerController.ts │ │ │ ├── EditCustomerController.ts │ │ │ └── ListCustomersController.ts │ │ ├── DTO │ │ │ ├── CustomerDTO.spec.ts │ │ │ └── CustomerDTO.ts │ │ ├── Repository │ │ │ └── CustomerRepository.ts │ │ ├── Table │ │ │ └── CustomerTableFactory.ts │ │ └── customer.module.ts │ ├── FairCalendar │ │ ├── Controller │ │ │ ├── AddEventController.ts │ │ │ ├── DeleteEventController.ts │ │ │ ├── EditEventController.ts │ │ │ └── FairCalendarController.ts │ │ ├── DTO │ │ │ ├── AbstractEventDTO.ts │ │ │ ├── AddEventControllerDTO.ts │ │ │ ├── AddEventDTO.spec.ts │ │ │ ├── AddEventDTO.ts │ │ │ ├── EditEventDTO.spec.ts │ │ │ ├── EditEventDTO.ts │ │ │ ├── FairCalendarControllerDTO.ts │ │ │ ├── MonthlyEventsDTO.spec.ts │ │ │ └── MonthlyEventsDTO.ts │ │ ├── Repository │ │ │ └── EventRepository.ts │ │ ├── Routing │ │ │ └── urls.ts │ │ ├── Table │ │ │ └── FairCalendarOverviewTableFactory.ts │ │ └── faircalendar.module.ts │ ├── Home │ │ ├── Controller │ │ │ └── HomeController.ts │ │ └── home.module.ts │ ├── HumanResource │ │ ├── Leave │ │ │ ├── Controller │ │ │ │ ├── AddLeaveRequestController.ts │ │ │ │ ├── DeleteLeaveRequestController.ts │ │ │ │ ├── EditLeaveRequestController.ts │ │ │ │ ├── ExportLeavesCalendarController.ts │ │ │ │ ├── GetLeaveRequestController.ts │ │ │ │ ├── ListLeaveRequestsController.ts │ │ │ │ └── ModerateLeaveRequestController.ts │ │ │ ├── DTO │ │ │ │ ├── LeaveRequestDTO.spec.ts │ │ │ │ ├── LeaveRequestDTO.ts │ │ │ │ ├── ListLeaveRequestsControllerDTO.ts │ │ │ │ ├── ModerationDTO.spec.ts │ │ │ │ └── ModerationDTO.ts │ │ │ ├── Repository │ │ │ │ ├── LeaveRepository.ts │ │ │ │ └── LeaveRequestRepository.ts │ │ │ └── Table │ │ │ │ ├── LeaveRequestOverviewTableFactory.ts │ │ │ │ └── LeaveRequestTableFactory.ts │ │ ├── MealTicket │ │ │ ├── Controller │ │ │ │ ├── AddMealTicketRemovalController.ts │ │ │ │ └── ListMealTicketsController.ts │ │ │ ├── DTO │ │ │ │ ├── MealTicketRemovalDTO.spec.ts │ │ │ │ └── MealTicketRemovalDTO.ts │ │ │ ├── Repository │ │ │ │ └── MealTicketRemovalRepository.ts │ │ │ └── Table │ │ │ │ └── MealTicketTableFactory.ts │ │ ├── PayrollElements │ │ │ ├── Controller │ │ │ │ └── GetPayrollElementsController.ts │ │ │ ├── DTO │ │ │ │ └── GetPayrollElementsControllerDTO.ts │ │ │ └── Table │ │ │ │ └── PayrollElementsTableFactory.ts │ │ ├── Savings │ │ │ ├── Action │ │ │ │ └── IncreaseUserSavingsRecordAction.ts │ │ │ ├── DTO │ │ │ │ ├── UserSavingsRecordDTO.spec.ts │ │ │ │ └── UserSavingsRecordDTO.ts │ │ │ └── Repository │ │ │ │ ├── InterestRateRepository.ts │ │ │ │ └── UserSavingsRecordRepository.ts │ │ ├── User │ │ │ ├── Controller │ │ │ │ ├── AddUserController.ts │ │ │ │ ├── EditProfileController.ts │ │ │ │ ├── EditUserController.ts │ │ │ │ ├── ListUsersController.ts │ │ │ │ ├── LoginController.ts │ │ │ │ └── LogoutController.ts │ │ │ ├── DTO │ │ │ │ ├── LoginDTO.spec.ts │ │ │ │ ├── LoginDTO.ts │ │ │ │ ├── ProfileDTO.spec.ts │ │ │ │ ├── ProfileDTO.ts │ │ │ │ ├── UserAdministrativeDTO.spec.ts │ │ │ │ ├── UserAdministrativeDTO.ts │ │ │ │ ├── UserDTO.spec.ts │ │ │ │ └── UserDTO.ts │ │ │ ├── Decorator │ │ │ │ ├── LoggedUser.ts │ │ │ │ └── Roles.ts │ │ │ ├── Repository │ │ │ │ ├── UserAdministrativeRepository.ts │ │ │ │ └── UserRepository.ts │ │ │ ├── Security │ │ │ │ ├── CalendarTokenGuard.ts │ │ │ │ ├── IsAuthenticatedGuard.ts │ │ │ │ ├── LocalAuthGuard.ts │ │ │ │ ├── LocalStrategy.ts │ │ │ │ ├── RolesGuard.ts │ │ │ │ └── UserSerializer.ts │ │ │ └── Table │ │ │ │ └── UserTableFactory.ts │ │ └── humanResource.module.ts │ ├── Notification │ │ ├── Repository │ │ │ └── NotificationRepository.ts │ │ └── notification.module.ts │ ├── Project │ │ ├── Controller │ │ │ ├── AddProjectController.ts │ │ │ ├── EditProjectController.ts │ │ │ └── ListProjectsController.ts │ │ ├── DTO │ │ │ ├── FiltersDTO.spec.ts │ │ │ ├── FiltersDTO.ts │ │ │ ├── ProjectDTO.spec.ts │ │ │ └── ProjectDTO.ts │ │ ├── Repository │ │ │ └── ProjectRepository.ts │ │ ├── Table │ │ │ └── ProjectTableFactory.ts │ │ └── project.module.ts │ ├── Security │ │ └── ExpressSession.ts │ ├── Settings │ │ ├── Action │ │ │ └── GetCooperativeAction.ts │ │ ├── Repository │ │ │ └── CooperativeRepository.ts │ │ └── settings.module.ts │ ├── Tables │ │ ├── HtmlColumn.ts │ │ ├── RowFactory.ts │ │ ├── TableCsvFactory.ts │ │ ├── index.ts │ │ └── tables.module.ts │ ├── Task │ │ ├── Controller │ │ │ ├── AddTaskController.ts │ │ │ ├── EditTaskController.ts │ │ │ └── ListTasksController.ts │ │ ├── DTO │ │ │ ├── TaskDTO.spec.ts │ │ │ └── TaskDTO.ts │ │ ├── Repository │ │ │ └── TaskRepository.ts │ │ ├── Table │ │ │ └── TaskTableFactory.ts │ │ └── task.module.ts │ ├── Templates │ │ ├── FlashMessages.ts │ │ ├── ITemplates.ts │ │ ├── NunjucksTemplates │ │ │ ├── NunjucksTemplates.ts │ │ │ └── TablesExtension.ts │ │ └── templates.module.ts │ ├── Translations │ │ ├── ITranslator.ts │ │ └── translations.module.ts │ ├── Ui │ │ └── Picto.ts │ └── bus.module.ts ├── app.module.ts ├── assets │ ├── customElements │ │ ├── autoForm.js │ │ ├── clipboardButton.js │ │ ├── dialogTrigger.js │ │ ├── eventCalendar.js │ │ ├── eventForm.js │ │ ├── formSubmit.js │ │ ├── frame.js │ │ ├── frameForm.js │ │ ├── index.js │ │ ├── monthNavigator.js │ │ ├── navMenuButton.js │ │ └── themeToggler.js │ ├── lib │ │ ├── cookie.js │ │ ├── customElements.js │ │ ├── frame.js │ │ ├── lazy │ │ │ └── eventCalendar.js │ │ └── navigation.js │ ├── main.js │ └── styles │ │ ├── components │ │ ├── badge.css │ │ ├── brand.css │ │ ├── breadcrumb.css │ │ ├── button.css │ │ ├── card.css │ │ ├── dropdown.css │ │ ├── event.css │ │ ├── event_calendar.css │ │ ├── form_errors.css │ │ ├── header.css │ │ ├── icon.css │ │ ├── index.css │ │ ├── input-group.css │ │ ├── label.css │ │ ├── link.css │ │ ├── nav.css │ │ ├── picto.css │ │ ├── select-group.css │ │ ├── shell.css │ │ ├── table.css │ │ ├── theme.css │ │ └── tooltip.css │ │ ├── defaults.css │ │ ├── layouts │ │ ├── box.css │ │ ├── cluster.css │ │ ├── container.css │ │ ├── frame.css │ │ ├── grid.css │ │ ├── index.css │ │ ├── sidebar.css │ │ └── stack.css │ │ ├── main.css │ │ ├── overrides.css │ │ ├── reset.css │ │ ├── utilities │ │ ├── a11y.css │ │ ├── background.css │ │ ├── gap.css │ │ ├── index.css │ │ ├── list.css │ │ ├── placement.css │ │ ├── shadow.css │ │ ├── sizing.css │ │ ├── spacing.css │ │ └── text.css │ │ └── variables.css ├── datasource.ts ├── main.ts ├── public │ ├── images │ │ ├── icons │ │ │ ├── android-icon-144x144.png │ │ │ ├── android-icon-192x192.png │ │ │ ├── android-icon-36x36.png │ │ │ ├── android-icon-48x48.png │ │ │ ├── android-icon-72x72.png │ │ │ ├── android-icon-96x96.png │ │ │ └── favicon.ico │ │ └── logo.png │ └── manifest.json ├── seeding.ts ├── templates │ ├── components │ │ ├── header.njk │ │ ├── nav_links.njk │ │ └── theme_toggler.njk │ ├── errors │ │ ├── http_error_debug.njk │ │ └── http_error_production.njk │ ├── includes │ │ └── pagination.njk │ ├── layouts │ │ ├── _base.njk │ │ ├── app.njk │ │ └── blank.njk │ ├── macros │ │ ├── attr.njk │ │ ├── breadcrumb.njk │ │ ├── buttons.njk │ │ ├── dialog.njk │ │ ├── form.njk │ │ ├── icons.njk │ │ ├── links.njk │ │ └── month_navigator.njk │ ├── pages │ │ ├── customers │ │ │ ├── _form.njk │ │ │ ├── add.njk │ │ │ ├── edit.njk │ │ │ └── list.njk │ │ ├── faircalendar │ │ │ ├── _event_list.njk │ │ │ ├── _filters_form.njk │ │ │ ├── _overview_badge.njk │ │ │ ├── events │ │ │ │ ├── _form.njk │ │ │ │ ├── add.njk │ │ │ │ └── edit.njk │ │ │ └── index.njk │ │ ├── home.njk │ │ ├── leave_requests │ │ │ ├── _form.njk │ │ │ ├── add.njk │ │ │ ├── detail.njk │ │ │ ├── edit.njk │ │ │ ├── list.njk │ │ │ └── overview │ │ │ │ ├── days_remaining_cell.njk │ │ │ │ ├── days_remaining_column_header.njk │ │ │ │ └── user_cell.njk │ │ ├── login.njk │ │ ├── meal_tickets │ │ │ ├── add.njk │ │ │ └── list.njk │ │ ├── payroll_elements │ │ │ ├── _filters_form.njk │ │ │ ├── _leaves.njk │ │ │ └── index.njk │ │ ├── profile │ │ │ ├── _form.njk │ │ │ └── edit.njk │ │ ├── projects │ │ │ ├── _form.njk │ │ │ ├── add.njk │ │ │ ├── edit.njk │ │ │ └── list.njk │ │ ├── tasks │ │ │ ├── _form.njk │ │ │ ├── add.njk │ │ │ ├── edit.njk │ │ │ └── list.njk │ │ └── users │ │ │ ├── _form.njk │ │ │ ├── add.njk │ │ │ ├── edit.njk │ │ │ └── list.njk │ └── tables │ │ ├── cells │ │ ├── actions.njk │ │ └── picto.njk │ │ ├── inlinetable.njk │ │ └── table.njk └── translations │ └── fr-FR.ftl ├── tools └── colorize_prefix.sh ├── tsconfig.build.json └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/.prettierrc -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: make start-dist 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/docs/deployment.md -------------------------------------------------------------------------------- /docs/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/docs/dev.md -------------------------------------------------------------------------------- /e2e/auth.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/e2e/auth.setup.js -------------------------------------------------------------------------------- /e2e/customers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/e2e/customers.spec.js -------------------------------------------------------------------------------- /e2e/faircalendar.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/e2e/faircalendar.spec.js -------------------------------------------------------------------------------- /e2e/home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/e2e/home.spec.js -------------------------------------------------------------------------------- /e2e/login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/e2e/login.spec.js -------------------------------------------------------------------------------- /e2e/nav.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/e2e/nav.spec.js -------------------------------------------------------------------------------- /e2e/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/e2e/util.js -------------------------------------------------------------------------------- /migrations/1575020116603-InitModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1575020116603-InitModel.ts -------------------------------------------------------------------------------- /migrations/1604827206393-ModelsRestructuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1604827206393-ModelsRestructuration.ts -------------------------------------------------------------------------------- /migrations/1605272527582-CooperativeSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1605272527582-CooperativeSettings.ts -------------------------------------------------------------------------------- /migrations/1605556978071-EventBillable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1605556978071-EventBillable.ts -------------------------------------------------------------------------------- /migrations/1606221236110-Invoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1606221236110-Invoice.ts -------------------------------------------------------------------------------- /migrations/1606403084585-InvoiceUnitPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1606403084585-InvoiceUnitPrice.ts -------------------------------------------------------------------------------- /migrations/1607088934563-ChangeUserAdministrativeJoiningDateType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1607088934563-ChangeUserAdministrativeJoiningDateType.ts -------------------------------------------------------------------------------- /migrations/1608728416097-MealTicketRemoval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1608728416097-MealTicketRemoval.ts -------------------------------------------------------------------------------- /migrations/1633700963101-Contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1633700963101-Contact.ts -------------------------------------------------------------------------------- /migrations/1633787043133-make_meal_ticket_removal_comment_nullable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1633787043133-make_meal_ticket_removal_comment_nullable.ts -------------------------------------------------------------------------------- /migrations/1637158054129-AddUserAdministrativeWorkingTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1637158054129-AddUserAdministrativeWorkingTime.ts -------------------------------------------------------------------------------- /migrations/1645798997884-add-contact-contactedby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1645798997884-add-contact-contactedby.ts -------------------------------------------------------------------------------- /migrations/1647071905784-DropPaySlip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1647071905784-DropPaySlip.ts -------------------------------------------------------------------------------- /migrations/1648283366970-DropProjectDayDuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1648283366970-DropProjectDayDuration.ts -------------------------------------------------------------------------------- /migrations/1650636333167-UserSavingsRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1650636333167-UserSavingsRecord.ts -------------------------------------------------------------------------------- /migrations/1651234850677-IllimitedLeaveType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1651234850677-IllimitedLeaveType.ts -------------------------------------------------------------------------------- /migrations/1651674281488-InterestRate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1651674281488-InterestRate.ts -------------------------------------------------------------------------------- /migrations/1676042443249-upgrade_database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1676042443249-upgrade_database.ts -------------------------------------------------------------------------------- /migrations/1676042513328-remove_john_doe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1676042513328-remove_john_doe.ts -------------------------------------------------------------------------------- /migrations/1678458554609-removeInvoices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1678458554609-removeInvoices.ts -------------------------------------------------------------------------------- /migrations/1679323604719-add_sustainable_mobility_fee_column_to_user_administrative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1679323604719-add_sustainable_mobility_fee_column_to_user_administrative.ts -------------------------------------------------------------------------------- /migrations/1687944271705-removeQuote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1687944271705-removeQuote.ts -------------------------------------------------------------------------------- /migrations/1687946137748-removeBillable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1687946137748-removeBillable.ts -------------------------------------------------------------------------------- /migrations/1687953603202-removeDailyRate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1687953603202-removeDailyRate.ts -------------------------------------------------------------------------------- /migrations/1687959453344-removeContacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1687959453344-removeContacts.ts -------------------------------------------------------------------------------- /migrations/1695400222241-removeFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1695400222241-removeFile.ts -------------------------------------------------------------------------------- /migrations/1699290758562-dropAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1699290758562-dropAddress.ts -------------------------------------------------------------------------------- /migrations/1703240232765-addSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1703240232765-addSession.ts -------------------------------------------------------------------------------- /migrations/1716653153304-projectActive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1716653153304-projectActive.ts -------------------------------------------------------------------------------- /migrations/1717147942177-create-notification-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1717147942177-create-notification-table.ts -------------------------------------------------------------------------------- /migrations/1718114720685-add-postponed-worked-free-day-leave-request-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1718114720685-add-postponed-worked-free-day-leave-request-type.ts -------------------------------------------------------------------------------- /migrations/1719581515131-addRelocationLeave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/migrations/1719581515131-addRelocationLeave.ts -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /src/.eslintignore: -------------------------------------------------------------------------------- 1 | **/node_modules/** 2 | -------------------------------------------------------------------------------- /src/Application/Common/MonthDate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Common/MonthDate.spec.ts -------------------------------------------------------------------------------- /src/Application/Common/MonthDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Common/MonthDate.ts -------------------------------------------------------------------------------- /src/Application/Common/Pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Common/Pagination.ts -------------------------------------------------------------------------------- /src/Application/Customer/Command/CreateCustomerCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Command/CreateCustomerCommand.ts -------------------------------------------------------------------------------- /src/Application/Customer/Command/CreateCustomerCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Command/CreateCustomerCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Customer/Command/CreateCustomerCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Command/CreateCustomerCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/Customer/Command/UpdateCustomerCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Command/UpdateCustomerCommand.ts -------------------------------------------------------------------------------- /src/Application/Customer/Command/UpdateCustomerCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Command/UpdateCustomerCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Customer/Command/UpdateCustomerCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Command/UpdateCustomerCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/Customer/Query/GetCustomerByIdQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Query/GetCustomerByIdQuery.ts -------------------------------------------------------------------------------- /src/Application/Customer/Query/GetCustomerByIdQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Query/GetCustomerByIdQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Customer/Query/GetCustomerByIdQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Query/GetCustomerByIdQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/Customer/Query/GetCustomersQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Query/GetCustomersQuery.ts -------------------------------------------------------------------------------- /src/Application/Customer/Query/GetCustomersQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Query/GetCustomersQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Customer/Query/GetCustomersQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/Query/GetCustomersQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/Customer/View/CustomerView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Customer/View/CustomerView.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Command/AbstractProjectAndTaskGetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Command/AbstractProjectAndTaskGetter.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Command/AddEventCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Command/AddEventCommand.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Command/AddEventCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Command/AddEventCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Command/AddEventCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Command/AddEventCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Command/DeleteEventCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Command/DeleteEventCommand.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Command/DeleteEventCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Command/DeleteEventCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Command/DeleteEventCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Command/DeleteEventCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Command/UpdateEventCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Command/UpdateEventCommand.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Command/UpdateEventCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Command/UpdateEventCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Command/UpdateEventCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Command/UpdateEventCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Query/GetEventByIdQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Query/GetEventByIdQuery.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Query/GetEventByIdQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Query/GetEventByIdQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Query/GetEventByIdQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Query/GetEventByIdQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Query/GetMonthlyFairCalendarQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Query/GetMonthlyFairCalendarQuery.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Query/GetMonthlyFairCalendarQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Query/GetMonthlyFairCalendarQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/Query/GetMonthlyFairCalendarQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/Query/GetMonthlyFairCalendarQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/View/AddEventsView.ts: -------------------------------------------------------------------------------- 1 | export class AddEventsView { 2 | constructor(public readonly errors: string[]) {} 3 | } 4 | -------------------------------------------------------------------------------- /src/Application/FairCalendar/View/EventView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/View/EventView.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/View/FairCalendarView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/View/FairCalendarView.ts -------------------------------------------------------------------------------- /src/Application/FairCalendar/View/MonthlyEventsView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/FairCalendar/View/MonthlyEventsView.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/AcceptLeaveRequestCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/AcceptLeaveRequestCommand.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/AcceptLeaveRequestCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/AcceptLeaveRequestCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/AcceptLeaveRequestCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/AcceptLeaveRequestCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/CreateLeaveRequestCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/CreateLeaveRequestCommand.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/CreateLeaveRequestCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/CreateLeaveRequestCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/CreateLeaveRequestCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/CreateLeaveRequestCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/DeleteLeaveRequestCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/DeleteLeaveRequestCommand.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/DeleteLeaveRequestCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/DeleteLeaveRequestCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/DeleteLeaveRequestCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/DeleteLeaveRequestCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/RefuseLeaveRequestCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/RefuseLeaveRequestCommand.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/RefuseLeaveRequestCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/RefuseLeaveRequestCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/RefuseLeaveRequestCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/RefuseLeaveRequestCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/UpdateLeaveRequestCommand.Handler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/UpdateLeaveRequestCommand.Handler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/UpdateLeaveRequestCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/UpdateLeaveRequestCommand.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Command/UpdateLeaveRequestCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Command/UpdateLeaveRequestCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Event/AcceptedLeaveRequestEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Event/AcceptedLeaveRequestEvent.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Event/AcceptedLeaveRequestEventListener.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Event/AcceptedLeaveRequestEventListener.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Event/AcceptedLeaveRequestEventListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Event/AcceptedLeaveRequestEventListener.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeaveRequestByIdQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeaveRequestByIdQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeaveRequestByIdQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeaveRequestByIdQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeaveRequestByIdQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeaveRequestByIdQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeaveRequestsOverviewQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeaveRequestsOverviewQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeaveRequestsOverviewQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeaveRequestsOverviewQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeaveRequestsOverviewQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeaveRequestsOverviewQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeaveRequestsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeaveRequestsQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeaveRequestsQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeaveRequestsQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeaveRequestsQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeaveRequestsQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeavesByMonthQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeavesByMonthQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeavesByMonthQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeavesByMonthQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeavesByMonthQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeavesByMonthQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeavesCalendarQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeavesCalendarQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeavesCalendarQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeavesCalendarQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetLeavesCalendarQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetLeavesCalendarQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetPendingLeaveRequestsCountQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetPendingLeaveRequestsCountQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetPendingLeaveRequestsCountQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetPendingLeaveRequestsCountQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/Query/GetPendingLeaveRequestsCountQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/Query/GetPendingLeaveRequestsCountQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/View/LeaveRequestDetailView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/View/LeaveRequestDetailView.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/View/LeaveRequestSlotView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/View/LeaveRequestSlotView.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Leave/View/LeaveRequestView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Leave/View/LeaveRequestView.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/MealTicket/Command/CreateMealTicketRemovalCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/MealTicket/Command/CreateMealTicketRemovalCommand.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/MealTicket/Command/CreateMealTicketRemovalCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/MealTicket/Command/CreateMealTicketRemovalCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/MealTicket/Command/CreateMealTicketRemovalCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/MealTicket/Command/CreateMealTicketRemovalCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/MealTicket/Query/GetMealTicketsPerMonthQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/MealTicket/Query/GetMealTicketsPerMonthQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/MealTicket/Query/GetMealTicketsPerMonthQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/MealTicket/Query/GetMealTicketsPerMonthQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/MealTicket/Query/GetMealTicketsPerMonthQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/MealTicket/Query/GetMealTicketsPerMonthQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/MealTicket/Views/MealTicketsPerMonthView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/MealTicket/Views/MealTicketsPerMonthView.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Payslip/Query/GetUserElementsQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Payslip/Query/GetUserElementsQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Payslip/Query/GetUsersElementsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Payslip/Query/GetUsersElementsQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Payslip/Query/GetUsersElementsQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Payslip/Query/GetUsersElementsQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Payslip/View/UserElementsView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Payslip/View/UserElementsView.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Payslip/View/UserLeavesView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Payslip/View/UserLeavesView.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Savings/Command/IncreaseUserSavingsRecordCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Savings/Command/IncreaseUserSavingsRecordCommand.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Savings/Command/IncreaseUserSavingsRecordCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Savings/Command/IncreaseUserSavingsRecordCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/Savings/Command/IncreaseUserSavingsRecordCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/Savings/Command/IncreaseUserSavingsRecordCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Command/CreateUserCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Command/CreateUserCommand.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Command/CreateUserCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Command/CreateUserCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Command/CreateUserCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Command/CreateUserCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Command/UpdateProfileCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Command/UpdateProfileCommand.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Command/UpdateProfileCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Command/UpdateProfileCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Command/UpdateProfileCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Command/UpdateProfileCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Command/UpdateUserCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Command/UpdateUserCommand.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Command/UpdateUserCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Command/UpdateUserCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Command/UpdateUserCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Command/UpdateUserCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Query/GetUserAdministrativeByIdQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Query/GetUserAdministrativeByIdQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Query/GetUserAdministrativeByIdQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Query/GetUserAdministrativeByIdQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Query/GetUserByIdQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Query/GetUserByIdQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Query/GetUserByIdQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Query/GetUserByIdQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Query/GetUserByIdQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Query/GetUserByIdQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Query/GetUsersQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Query/GetUsersQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Query/GetUsersQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Query/GetUsersQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Query/GetUsersQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Query/GetUsersQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Query/LoginQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Query/LoginQuery.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Query/LoginQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Query/LoginQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/Query/LoginQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/Query/LoginQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/View/AuthenticatedView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/View/AuthenticatedView.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/View/UserAdministrativeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/View/UserAdministrativeView.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/View/UserSummaryView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/View/UserSummaryView.ts -------------------------------------------------------------------------------- /src/Application/HumanResource/User/View/UserView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/HumanResource/User/View/UserView.ts -------------------------------------------------------------------------------- /src/Application/ICommand.ts: -------------------------------------------------------------------------------- 1 | export interface ICommand {} 2 | -------------------------------------------------------------------------------- /src/Application/ICommandBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/ICommandBus.ts -------------------------------------------------------------------------------- /src/Application/IDateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/IDateUtils.ts -------------------------------------------------------------------------------- /src/Application/IEvent.ts: -------------------------------------------------------------------------------- 1 | export interface IEvent {} 2 | -------------------------------------------------------------------------------- /src/Application/IEventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/IEventBus.ts -------------------------------------------------------------------------------- /src/Application/IMattermostNotifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/IMattermostNotifier.ts -------------------------------------------------------------------------------- /src/Application/IPasswordEncoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/IPasswordEncoder.ts -------------------------------------------------------------------------------- /src/Application/IQuery.ts: -------------------------------------------------------------------------------- 1 | export interface IQuery {} 2 | -------------------------------------------------------------------------------- /src/Application/IQueryBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/IQueryBus.ts -------------------------------------------------------------------------------- /src/Application/Notification/Command/CreateNotificationCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Notification/Command/CreateNotificationCommand.ts -------------------------------------------------------------------------------- /src/Application/Notification/Command/CreateNotificationCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Notification/Command/CreateNotificationCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/Project/Command/CreateProjectCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Command/CreateProjectCommand.ts -------------------------------------------------------------------------------- /src/Application/Project/Command/CreateProjectCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Command/CreateProjectCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Project/Command/CreateProjectCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Command/CreateProjectCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/Project/Command/UpdateProjectCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Command/UpdateProjectCommand.ts -------------------------------------------------------------------------------- /src/Application/Project/Command/UpdateProjectCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Command/UpdateProjectCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Project/Command/UpdateProjectCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Command/UpdateProjectCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/Project/Query/GetProjectByIdQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Query/GetProjectByIdQuery.ts -------------------------------------------------------------------------------- /src/Application/Project/Query/GetProjectByIdQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Query/GetProjectByIdQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Project/Query/GetProjectByIdQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Query/GetProjectByIdQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/Project/Query/GetProjectsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Query/GetProjectsQuery.ts -------------------------------------------------------------------------------- /src/Application/Project/Query/GetProjectsQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Query/GetProjectsQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Project/Query/GetProjectsQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/Query/GetProjectsQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/Project/View/ProjectView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Project/View/ProjectView.ts -------------------------------------------------------------------------------- /src/Application/Settings/Query/GetCooperativeQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Settings/Query/GetCooperativeQuery.ts -------------------------------------------------------------------------------- /src/Application/Settings/Query/GetCooperativeQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Settings/Query/GetCooperativeQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Settings/Query/GetCooperativeQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Settings/Query/GetCooperativeQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/Settings/View/CooperativeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Settings/View/CooperativeView.ts -------------------------------------------------------------------------------- /src/Application/Task/Command/CreateTaskCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Command/CreateTaskCommand.ts -------------------------------------------------------------------------------- /src/Application/Task/Command/CreateTaskCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Command/CreateTaskCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Task/Command/CreateTaskCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Command/CreateTaskCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/Task/Command/UpdateTaskCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Command/UpdateTaskCommand.ts -------------------------------------------------------------------------------- /src/Application/Task/Command/UpdateTaskCommandHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Command/UpdateTaskCommandHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Task/Command/UpdateTaskCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Command/UpdateTaskCommandHandler.ts -------------------------------------------------------------------------------- /src/Application/Task/Query/GetTaskByIdQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Query/GetTaskByIdQuery.ts -------------------------------------------------------------------------------- /src/Application/Task/Query/GetTaskByIdQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Query/GetTaskByIdQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Task/Query/GetTaskByIdQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Query/GetTaskByIdQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/Task/Query/GetTasksQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Query/GetTasksQuery.ts -------------------------------------------------------------------------------- /src/Application/Task/Query/GetTasksQueryHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Query/GetTasksQueryHandler.spec.ts -------------------------------------------------------------------------------- /src/Application/Task/Query/GetTasksQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/Query/GetTasksQueryHandler.ts -------------------------------------------------------------------------------- /src/Application/Task/View/TaskView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Application/Task/View/TaskView.ts -------------------------------------------------------------------------------- /src/DataSeeding/Factories/CustomerFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/DataSeeding/Factories/CustomerFactory.ts -------------------------------------------------------------------------------- /src/DataSeeding/Factories/UserAdministrativeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/DataSeeding/Factories/UserAdministrativeFactory.ts -------------------------------------------------------------------------------- /src/DataSeeding/Factories/UserFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/DataSeeding/Factories/UserFactory.ts -------------------------------------------------------------------------------- /src/DataSeeding/Seeders/AppSeeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/DataSeeding/Seeders/AppSeeder.ts -------------------------------------------------------------------------------- /src/DataSeeding/Seeders/CustomerSeeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/DataSeeding/Seeders/CustomerSeeder.ts -------------------------------------------------------------------------------- /src/DataSeeding/Seeders/UserSeeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/DataSeeding/Seeders/UserSeeder.ts -------------------------------------------------------------------------------- /src/Domain/Customer/Customer.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Customer/Customer.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/Customer/Customer.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Customer/Customer.entity.ts -------------------------------------------------------------------------------- /src/Domain/Customer/Exception/CustomerAlreadyExistException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Customer/Exception/CustomerAlreadyExistException.ts -------------------------------------------------------------------------------- /src/Domain/Customer/Exception/CustomerNotFoundException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Customer/Exception/CustomerNotFoundException.ts -------------------------------------------------------------------------------- /src/Domain/Customer/Repository/ICustomerRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Customer/Repository/ICustomerRepository.ts -------------------------------------------------------------------------------- /src/Domain/Customer/Specification/IsCustomerAlreadyExist.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Customer/Specification/IsCustomerAlreadyExist.spec.ts -------------------------------------------------------------------------------- /src/Domain/Customer/Specification/IsCustomerAlreadyExist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Customer/Specification/IsCustomerAlreadyExist.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Event.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Event.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Event.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Event.entity.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Exception/EventDoesntBelongToUserException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Exception/EventDoesntBelongToUserException.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Exception/EventNotFoundException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Exception/EventNotFoundException.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Exception/EventsOrLeavesAlreadyExistForThisPeriodException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Exception/EventsOrLeavesAlreadyExistForThisPeriodException.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Exception/MaximumEventReachedException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Exception/MaximumEventReachedException.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Exception/NoDateDuringThisPeriodException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Exception/NoDateDuringThisPeriodException.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Exception/ProjectOrTaskMissingException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Exception/ProjectOrTaskMissingException.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/FairCalendarOverviewFactory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/FairCalendarOverviewFactory.spec.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/FairCalendarOverviewFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/FairCalendarOverviewFactory.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/ICalendarOverview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/ICalendarOverview.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Repository/IEventRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Repository/IEventRepository.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Specification/DoesEventBelongToUser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Specification/DoesEventBelongToUser.spec.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Specification/DoesEventBelongToUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Specification/DoesEventBelongToUser.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Specification/DoesLeaveExistForPeriod.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Specification/DoesLeaveExistForPeriod.spec.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Specification/DoesLeaveExistForPeriod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Specification/DoesLeaveExistForPeriod.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Specification/IsMaximumTimeSpentReached.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Specification/IsMaximumTimeSpentReached.spec.ts -------------------------------------------------------------------------------- /src/Domain/FairCalendar/Specification/IsMaximumTimeSpentReached.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/FairCalendar/Specification/IsMaximumTimeSpentReached.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Converter/LeaveRequestToLeavesConverter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Converter/LeaveRequestToLeavesConverter.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Converter/LeaveRequestToLeavesConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Converter/LeaveRequestToLeavesConverter.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Exception/LeaveRequestAlreadyExistForThisPeriodException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Exception/LeaveRequestAlreadyExistForThisPeriodException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Exception/LeaveRequestCantBeModeratedException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Exception/LeaveRequestCantBeModeratedException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Exception/LeaveRequestCantBeRemovedException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Exception/LeaveRequestCantBeRemovedException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Exception/LeaveRequestCantBeUpdatedException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Exception/LeaveRequestCantBeUpdatedException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Exception/LeaveRequestNotFoundException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Exception/LeaveRequestNotFoundException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/ILeaveRequestsOverview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/ILeaveRequestsOverview.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Leave.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Leave.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Leave.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Leave.entity.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/LeaveRequest.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/LeaveRequest.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/LeaveRequest.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/LeaveRequest.entity.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/LeavesCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/LeavesCollection.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Repository/ILeaveRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Repository/ILeaveRepository.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Repository/ILeaveRequestRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Repository/ILeaveRequestRepository.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Specification/CanLeaveRequestBeCancelled.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Specification/CanLeaveRequestBeCancelled.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Specification/CanLeaveRequestBeCancelled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Specification/CanLeaveRequestBeCancelled.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Specification/CanLeaveRequestBeModerated.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Specification/CanLeaveRequestBeModerated.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Specification/CanLeaveRequestBeModerated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Specification/CanLeaveRequestBeModerated.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Specification/DoesLeaveRequestBelongToUser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Specification/DoesLeaveRequestBelongToUser.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Specification/DoesLeaveRequestBelongToUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Specification/DoesLeaveRequestBelongToUser.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Specification/DoesLeaveRequestExistForPeriod.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Specification/DoesLeaveRequestExistForPeriod.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/Specification/DoesLeaveRequestExistForPeriod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/Specification/DoesLeaveRequestExistForPeriod.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/UserLeavesCollection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/UserLeavesCollection.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Leave/UserLeavesCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Leave/UserLeavesCollection.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/MealTicket/Exception/MealTicketRemovalAlreadyExistException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/MealTicket/Exception/MealTicketRemovalAlreadyExistException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/MealTicket/Exception/NotAWorkingDateException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/MealTicket/Exception/NotAWorkingDateException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/MealTicket/MealTicketRemoval.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/MealTicket/MealTicketRemoval.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/MealTicket/MealTicketRemoval.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/MealTicket/MealTicketRemoval.entity.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/MealTicket/Repository/IMealTicketRemovalRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/MealTicket/Repository/IMealTicketRemovalRepository.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/MealTicket/Specification/IsMealTicketRemovalAlreadyExist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/MealTicket/Specification/IsMealTicketRemovalAlreadyExist.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/MealTicket/Specification/IsMealTicketRemovalExist.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/MealTicket/Specification/IsMealTicketRemovalExist.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Savings/Exception/InterestRateNotFoundException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Savings/Exception/InterestRateNotFoundException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Savings/InterestRate.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Savings/InterestRate.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Savings/InterestRate.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Savings/InterestRate.entity.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Savings/Repository/IInterestRateRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Savings/Repository/IInterestRateRepository.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Savings/Repository/IUserSavingsRecordRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Savings/Repository/IUserSavingsRecordRepository.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Savings/UserSavingsRecord.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Savings/UserSavingsRecord.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/Savings/UserSavingsRecord.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/Savings/UserSavingsRecord.entity.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/Exception/EmailAlreadyExistException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/Exception/EmailAlreadyExistException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/Exception/PasswordNotMatchException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/Exception/PasswordNotMatchException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/Exception/UserAdministrativeMissingException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/Exception/UserAdministrativeMissingException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/Exception/UserNotFoundException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/Exception/UserNotFoundException.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/Repository/IUserAdministrativeRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/Repository/IUserAdministrativeRepository.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/Repository/IUserRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/Repository/IUserRepository.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/Specification/IsEmailAlreadyExist.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/Specification/IsEmailAlreadyExist.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/Specification/IsEmailAlreadyExist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/Specification/IsEmailAlreadyExist.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/User.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/User.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/User.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/User.entity.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/UserAdministrative.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/UserAdministrative.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/HumanResource/User/UserAdministrative.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/HumanResource/User/UserAdministrative.entity.ts -------------------------------------------------------------------------------- /src/Domain/Notification/Exception/NotificationFailureException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Notification/Exception/NotificationFailureException.ts -------------------------------------------------------------------------------- /src/Domain/Notification/Notification.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Notification/Notification.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/Notification/Notification.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Notification/Notification.entity.ts -------------------------------------------------------------------------------- /src/Domain/Notification/Repository/INotificationRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Notification/Repository/INotificationRepository.ts -------------------------------------------------------------------------------- /src/Domain/Project/Exception/ProjectAlreadyExistException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Project/Exception/ProjectAlreadyExistException.ts -------------------------------------------------------------------------------- /src/Domain/Project/Exception/ProjectNotFoundException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Project/Exception/ProjectNotFoundException.ts -------------------------------------------------------------------------------- /src/Domain/Project/Project.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Project/Project.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/Project/Project.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Project/Project.entity.ts -------------------------------------------------------------------------------- /src/Domain/Project/Repository/IProjectRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Project/Repository/IProjectRepository.ts -------------------------------------------------------------------------------- /src/Domain/Project/Specification/IsProjectAlreadyExist.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Project/Specification/IsProjectAlreadyExist.spec.ts -------------------------------------------------------------------------------- /src/Domain/Project/Specification/IsProjectAlreadyExist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Project/Specification/IsProjectAlreadyExist.ts -------------------------------------------------------------------------------- /src/Domain/Session/Session.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Session/Session.entity.ts -------------------------------------------------------------------------------- /src/Domain/Settings/Cooperative.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Settings/Cooperative.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/Settings/Cooperative.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Settings/Cooperative.entity.ts -------------------------------------------------------------------------------- /src/Domain/Settings/Repository/CooperativeNotFoundException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Settings/Repository/CooperativeNotFoundException.ts -------------------------------------------------------------------------------- /src/Domain/Settings/Repository/ICooperativeRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Settings/Repository/ICooperativeRepository.ts -------------------------------------------------------------------------------- /src/Domain/Task/Exception/TaskAlreadyExistException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Task/Exception/TaskAlreadyExistException.ts -------------------------------------------------------------------------------- /src/Domain/Task/Exception/TaskNotFoundException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Task/Exception/TaskNotFoundException.ts -------------------------------------------------------------------------------- /src/Domain/Task/Repository/ITaskRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Task/Repository/ITaskRepository.ts -------------------------------------------------------------------------------- /src/Domain/Task/Specification/IsTaskAlreadyExist.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Task/Specification/IsTaskAlreadyExist.spec.ts -------------------------------------------------------------------------------- /src/Domain/Task/Specification/IsTaskAlreadyExist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Task/Specification/IsTaskAlreadyExist.ts -------------------------------------------------------------------------------- /src/Domain/Task/Task.entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Task/Task.entity.spec.ts -------------------------------------------------------------------------------- /src/Domain/Task/Task.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Domain/Task/Task.entity.ts -------------------------------------------------------------------------------- /src/Infrastructure/Adapter/CommandBusAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Adapter/CommandBusAdapter.ts -------------------------------------------------------------------------------- /src/Infrastructure/Adapter/DateUtilsAdapter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Adapter/DateUtilsAdapter.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/Adapter/DateUtilsAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Adapter/DateUtilsAdapter.ts -------------------------------------------------------------------------------- /src/Infrastructure/Adapter/EventBusAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Adapter/EventBusAdapter.ts -------------------------------------------------------------------------------- /src/Infrastructure/Adapter/FluentTranslatorAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Adapter/FluentTranslatorAdapter.ts -------------------------------------------------------------------------------- /src/Infrastructure/Adapter/MattermostNotifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Adapter/MattermostNotifier.ts -------------------------------------------------------------------------------- /src/Infrastructure/Adapter/PasswordEncoderAdapter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Adapter/PasswordEncoderAdapter.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/Adapter/PasswordEncoderAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Adapter/PasswordEncoderAdapter.ts -------------------------------------------------------------------------------- /src/Infrastructure/Adapter/QueryBusAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Adapter/QueryBusAdapter.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/DTO/IdDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/DTO/IdDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/DTO/IdDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/DTO/IdDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/DTO/PaginationDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/DTO/PaginationDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/DTO/PaginationDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/DTO/PaginationDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/ExceptionFilter/AuthRequiredFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/ExceptionFilter/AuthRequiredFilter.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/ExceptionFilter/UnexpectedErrorFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/ExceptionFilter/UnexpectedErrorFilter.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/ExtendedRouting/RouteNameResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/ExtendedRouting/RouteNameResolver.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/ExtendedRouting/WithName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/ExtendedRouting/WithName.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/ExtendedRouting/extendedRouting.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/ExtendedRouting/extendedRouting.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/Utils/Array.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/Utils/Array.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/Utils/ArrayUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/Utils/ArrayUtils.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/Utils/dateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/Utils/dateUtils.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/Utils/formatUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/Utils/formatUtils.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/Validator/DateGreaterOrEqualThan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/Validator/DateGreaterOrEqualThan.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/Validator/IsEmailOrEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/Validator/IsEmailOrEmpty.ts -------------------------------------------------------------------------------- /src/Infrastructure/Common/Validator/IsPhoneNumberOrEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Common/Validator/IsPhoneNumberOrEmpty.ts -------------------------------------------------------------------------------- /src/Infrastructure/Customer/Controller/AddCustomerController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Customer/Controller/AddCustomerController.ts -------------------------------------------------------------------------------- /src/Infrastructure/Customer/Controller/EditCustomerController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Customer/Controller/EditCustomerController.ts -------------------------------------------------------------------------------- /src/Infrastructure/Customer/Controller/ListCustomersController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Customer/Controller/ListCustomersController.ts -------------------------------------------------------------------------------- /src/Infrastructure/Customer/DTO/CustomerDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Customer/DTO/CustomerDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/Customer/DTO/CustomerDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Customer/DTO/CustomerDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/Customer/Repository/CustomerRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Customer/Repository/CustomerRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/Customer/Table/CustomerTableFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Customer/Table/CustomerTableFactory.ts -------------------------------------------------------------------------------- /src/Infrastructure/Customer/customer.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Customer/customer.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/Controller/AddEventController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/Controller/AddEventController.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/Controller/DeleteEventController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/Controller/DeleteEventController.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/Controller/EditEventController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/Controller/EditEventController.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/Controller/FairCalendarController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/Controller/FairCalendarController.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/DTO/AbstractEventDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/DTO/AbstractEventDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/DTO/AddEventControllerDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/DTO/AddEventControllerDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/DTO/AddEventDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/DTO/AddEventDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/DTO/AddEventDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/DTO/AddEventDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/DTO/EditEventDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/DTO/EditEventDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/DTO/EditEventDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/DTO/EditEventDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/DTO/FairCalendarControllerDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/DTO/FairCalendarControllerDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/DTO/MonthlyEventsDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/DTO/MonthlyEventsDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/DTO/MonthlyEventsDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/DTO/MonthlyEventsDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/Repository/EventRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/Repository/EventRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/Routing/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/Routing/urls.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/Table/FairCalendarOverviewTableFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/Table/FairCalendarOverviewTableFactory.ts -------------------------------------------------------------------------------- /src/Infrastructure/FairCalendar/faircalendar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/FairCalendar/faircalendar.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/Home/Controller/HomeController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Home/Controller/HomeController.ts -------------------------------------------------------------------------------- /src/Infrastructure/Home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Home/home.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/Controller/AddLeaveRequestController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/Controller/AddLeaveRequestController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/Controller/DeleteLeaveRequestController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/Controller/DeleteLeaveRequestController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/Controller/EditLeaveRequestController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/Controller/EditLeaveRequestController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/Controller/ExportLeavesCalendarController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/Controller/ExportLeavesCalendarController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/Controller/GetLeaveRequestController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/Controller/GetLeaveRequestController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/Controller/ListLeaveRequestsController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/Controller/ListLeaveRequestsController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/Controller/ModerateLeaveRequestController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/Controller/ModerateLeaveRequestController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/DTO/LeaveRequestDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/DTO/LeaveRequestDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/DTO/LeaveRequestDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/DTO/LeaveRequestDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/DTO/ListLeaveRequestsControllerDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/DTO/ListLeaveRequestsControllerDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/DTO/ModerationDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/DTO/ModerationDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/DTO/ModerationDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/DTO/ModerationDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/Repository/LeaveRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/Repository/LeaveRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/Repository/LeaveRequestRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/Repository/LeaveRequestRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/Table/LeaveRequestOverviewTableFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/Table/LeaveRequestOverviewTableFactory.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Leave/Table/LeaveRequestTableFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Leave/Table/LeaveRequestTableFactory.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/MealTicket/Controller/AddMealTicketRemovalController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/MealTicket/Controller/AddMealTicketRemovalController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/MealTicket/Controller/ListMealTicketsController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/MealTicket/Controller/ListMealTicketsController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/MealTicket/DTO/MealTicketRemovalDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/MealTicket/DTO/MealTicketRemovalDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/MealTicket/DTO/MealTicketRemovalDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/MealTicket/DTO/MealTicketRemovalDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/MealTicket/Repository/MealTicketRemovalRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/MealTicket/Repository/MealTicketRemovalRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/MealTicket/Table/MealTicketTableFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/MealTicket/Table/MealTicketTableFactory.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/PayrollElements/Controller/GetPayrollElementsController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/PayrollElements/Controller/GetPayrollElementsController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/PayrollElements/DTO/GetPayrollElementsControllerDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/PayrollElements/DTO/GetPayrollElementsControllerDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/PayrollElements/Table/PayrollElementsTableFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/PayrollElements/Table/PayrollElementsTableFactory.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Savings/Action/IncreaseUserSavingsRecordAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Savings/Action/IncreaseUserSavingsRecordAction.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Savings/DTO/UserSavingsRecordDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Savings/DTO/UserSavingsRecordDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Savings/DTO/UserSavingsRecordDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Savings/DTO/UserSavingsRecordDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Savings/Repository/InterestRateRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Savings/Repository/InterestRateRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/Savings/Repository/UserSavingsRecordRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/Savings/Repository/UserSavingsRecordRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Controller/AddUserController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Controller/AddUserController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Controller/EditProfileController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Controller/EditProfileController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Controller/EditUserController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Controller/EditUserController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Controller/ListUsersController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Controller/ListUsersController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Controller/LoginController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Controller/LoginController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Controller/LogoutController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Controller/LogoutController.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/DTO/LoginDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/DTO/LoginDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/DTO/LoginDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/DTO/LoginDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/DTO/ProfileDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/DTO/ProfileDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/DTO/ProfileDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/DTO/ProfileDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/DTO/UserAdministrativeDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/DTO/UserAdministrativeDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/DTO/UserAdministrativeDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/DTO/UserAdministrativeDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/DTO/UserDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/DTO/UserDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/DTO/UserDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/DTO/UserDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Decorator/LoggedUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Decorator/LoggedUser.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Decorator/Roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Decorator/Roles.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Repository/UserAdministrativeRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Repository/UserAdministrativeRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Repository/UserRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Repository/UserRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Security/CalendarTokenGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Security/CalendarTokenGuard.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Security/IsAuthenticatedGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Security/IsAuthenticatedGuard.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Security/LocalAuthGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Security/LocalAuthGuard.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Security/LocalStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Security/LocalStrategy.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Security/RolesGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Security/RolesGuard.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Security/UserSerializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Security/UserSerializer.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/User/Table/UserTableFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/User/Table/UserTableFactory.ts -------------------------------------------------------------------------------- /src/Infrastructure/HumanResource/humanResource.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/HumanResource/humanResource.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/Notification/Repository/NotificationRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Notification/Repository/NotificationRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/Notification/notification.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Notification/notification.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/Project/Controller/AddProjectController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Project/Controller/AddProjectController.ts -------------------------------------------------------------------------------- /src/Infrastructure/Project/Controller/EditProjectController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Project/Controller/EditProjectController.ts -------------------------------------------------------------------------------- /src/Infrastructure/Project/Controller/ListProjectsController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Project/Controller/ListProjectsController.ts -------------------------------------------------------------------------------- /src/Infrastructure/Project/DTO/FiltersDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Project/DTO/FiltersDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/Project/DTO/FiltersDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Project/DTO/FiltersDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/Project/DTO/ProjectDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Project/DTO/ProjectDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/Project/DTO/ProjectDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Project/DTO/ProjectDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/Project/Repository/ProjectRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Project/Repository/ProjectRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/Project/Table/ProjectTableFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Project/Table/ProjectTableFactory.ts -------------------------------------------------------------------------------- /src/Infrastructure/Project/project.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Project/project.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/Security/ExpressSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Security/ExpressSession.ts -------------------------------------------------------------------------------- /src/Infrastructure/Settings/Action/GetCooperativeAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Settings/Action/GetCooperativeAction.ts -------------------------------------------------------------------------------- /src/Infrastructure/Settings/Repository/CooperativeRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Settings/Repository/CooperativeRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/Settings/settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Settings/settings.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/Tables/HtmlColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Tables/HtmlColumn.ts -------------------------------------------------------------------------------- /src/Infrastructure/Tables/RowFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Tables/RowFactory.ts -------------------------------------------------------------------------------- /src/Infrastructure/Tables/TableCsvFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Tables/TableCsvFactory.ts -------------------------------------------------------------------------------- /src/Infrastructure/Tables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Tables/index.ts -------------------------------------------------------------------------------- /src/Infrastructure/Tables/tables.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Tables/tables.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/Task/Controller/AddTaskController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Task/Controller/AddTaskController.ts -------------------------------------------------------------------------------- /src/Infrastructure/Task/Controller/EditTaskController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Task/Controller/EditTaskController.ts -------------------------------------------------------------------------------- /src/Infrastructure/Task/Controller/ListTasksController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Task/Controller/ListTasksController.ts -------------------------------------------------------------------------------- /src/Infrastructure/Task/DTO/TaskDTO.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Task/DTO/TaskDTO.spec.ts -------------------------------------------------------------------------------- /src/Infrastructure/Task/DTO/TaskDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Task/DTO/TaskDTO.ts -------------------------------------------------------------------------------- /src/Infrastructure/Task/Repository/TaskRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Task/Repository/TaskRepository.ts -------------------------------------------------------------------------------- /src/Infrastructure/Task/Table/TaskTableFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Task/Table/TaskTableFactory.ts -------------------------------------------------------------------------------- /src/Infrastructure/Task/task.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Task/task.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/Templates/FlashMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Templates/FlashMessages.ts -------------------------------------------------------------------------------- /src/Infrastructure/Templates/ITemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Templates/ITemplates.ts -------------------------------------------------------------------------------- /src/Infrastructure/Templates/NunjucksTemplates/NunjucksTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Templates/NunjucksTemplates/NunjucksTemplates.ts -------------------------------------------------------------------------------- /src/Infrastructure/Templates/NunjucksTemplates/TablesExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Templates/NunjucksTemplates/TablesExtension.ts -------------------------------------------------------------------------------- /src/Infrastructure/Templates/templates.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Templates/templates.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/Translations/ITranslator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Translations/ITranslator.ts -------------------------------------------------------------------------------- /src/Infrastructure/Translations/translations.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Translations/translations.module.ts -------------------------------------------------------------------------------- /src/Infrastructure/Ui/Picto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/Ui/Picto.ts -------------------------------------------------------------------------------- /src/Infrastructure/bus.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/Infrastructure/bus.module.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/assets/customElements/autoForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/autoForm.js -------------------------------------------------------------------------------- /src/assets/customElements/clipboardButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/clipboardButton.js -------------------------------------------------------------------------------- /src/assets/customElements/dialogTrigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/dialogTrigger.js -------------------------------------------------------------------------------- /src/assets/customElements/eventCalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/eventCalendar.js -------------------------------------------------------------------------------- /src/assets/customElements/eventForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/eventForm.js -------------------------------------------------------------------------------- /src/assets/customElements/formSubmit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/formSubmit.js -------------------------------------------------------------------------------- /src/assets/customElements/frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/frame.js -------------------------------------------------------------------------------- /src/assets/customElements/frameForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/frameForm.js -------------------------------------------------------------------------------- /src/assets/customElements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/index.js -------------------------------------------------------------------------------- /src/assets/customElements/monthNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/monthNavigator.js -------------------------------------------------------------------------------- /src/assets/customElements/navMenuButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/navMenuButton.js -------------------------------------------------------------------------------- /src/assets/customElements/themeToggler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/customElements/themeToggler.js -------------------------------------------------------------------------------- /src/assets/lib/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/lib/cookie.js -------------------------------------------------------------------------------- /src/assets/lib/customElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/lib/customElements.js -------------------------------------------------------------------------------- /src/assets/lib/frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/lib/frame.js -------------------------------------------------------------------------------- /src/assets/lib/lazy/eventCalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/lib/lazy/eventCalendar.js -------------------------------------------------------------------------------- /src/assets/lib/navigation.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/main.js -------------------------------------------------------------------------------- /src/assets/styles/components/badge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/badge.css -------------------------------------------------------------------------------- /src/assets/styles/components/brand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/brand.css -------------------------------------------------------------------------------- /src/assets/styles/components/breadcrumb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/breadcrumb.css -------------------------------------------------------------------------------- /src/assets/styles/components/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/button.css -------------------------------------------------------------------------------- /src/assets/styles/components/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/card.css -------------------------------------------------------------------------------- /src/assets/styles/components/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/dropdown.css -------------------------------------------------------------------------------- /src/assets/styles/components/event.css: -------------------------------------------------------------------------------- 1 | pc-event-form { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/styles/components/event_calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/event_calendar.css -------------------------------------------------------------------------------- /src/assets/styles/components/form_errors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/form_errors.css -------------------------------------------------------------------------------- /src/assets/styles/components/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/header.css -------------------------------------------------------------------------------- /src/assets/styles/components/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/icon.css -------------------------------------------------------------------------------- /src/assets/styles/components/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/index.css -------------------------------------------------------------------------------- /src/assets/styles/components/input-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/input-group.css -------------------------------------------------------------------------------- /src/assets/styles/components/label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/label.css -------------------------------------------------------------------------------- /src/assets/styles/components/link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/link.css -------------------------------------------------------------------------------- /src/assets/styles/components/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/nav.css -------------------------------------------------------------------------------- /src/assets/styles/components/picto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/picto.css -------------------------------------------------------------------------------- /src/assets/styles/components/select-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/select-group.css -------------------------------------------------------------------------------- /src/assets/styles/components/shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/shell.css -------------------------------------------------------------------------------- /src/assets/styles/components/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/table.css -------------------------------------------------------------------------------- /src/assets/styles/components/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/theme.css -------------------------------------------------------------------------------- /src/assets/styles/components/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/components/tooltip.css -------------------------------------------------------------------------------- /src/assets/styles/defaults.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/defaults.css -------------------------------------------------------------------------------- /src/assets/styles/layouts/box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/layouts/box.css -------------------------------------------------------------------------------- /src/assets/styles/layouts/cluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/layouts/cluster.css -------------------------------------------------------------------------------- /src/assets/styles/layouts/container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/layouts/container.css -------------------------------------------------------------------------------- /src/assets/styles/layouts/frame.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/layouts/frame.css -------------------------------------------------------------------------------- /src/assets/styles/layouts/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/layouts/grid.css -------------------------------------------------------------------------------- /src/assets/styles/layouts/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/layouts/index.css -------------------------------------------------------------------------------- /src/assets/styles/layouts/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/layouts/sidebar.css -------------------------------------------------------------------------------- /src/assets/styles/layouts/stack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/layouts/stack.css -------------------------------------------------------------------------------- /src/assets/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/main.css -------------------------------------------------------------------------------- /src/assets/styles/overrides.css: -------------------------------------------------------------------------------- 1 | [hidden] { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/reset.css -------------------------------------------------------------------------------- /src/assets/styles/utilities/a11y.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/utilities/a11y.css -------------------------------------------------------------------------------- /src/assets/styles/utilities/background.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/utilities/background.css -------------------------------------------------------------------------------- /src/assets/styles/utilities/gap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/utilities/gap.css -------------------------------------------------------------------------------- /src/assets/styles/utilities/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/utilities/index.css -------------------------------------------------------------------------------- /src/assets/styles/utilities/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/utilities/list.css -------------------------------------------------------------------------------- /src/assets/styles/utilities/placement.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/utilities/placement.css -------------------------------------------------------------------------------- /src/assets/styles/utilities/shadow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/utilities/shadow.css -------------------------------------------------------------------------------- /src/assets/styles/utilities/sizing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/utilities/sizing.css -------------------------------------------------------------------------------- /src/assets/styles/utilities/spacing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/utilities/spacing.css -------------------------------------------------------------------------------- /src/assets/styles/utilities/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/utilities/text.css -------------------------------------------------------------------------------- /src/assets/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/assets/styles/variables.css -------------------------------------------------------------------------------- /src/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/datasource.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/public/images/icons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/public/images/icons/android-icon-144x144.png -------------------------------------------------------------------------------- /src/public/images/icons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/public/images/icons/android-icon-192x192.png -------------------------------------------------------------------------------- /src/public/images/icons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/public/images/icons/android-icon-36x36.png -------------------------------------------------------------------------------- /src/public/images/icons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/public/images/icons/android-icon-48x48.png -------------------------------------------------------------------------------- /src/public/images/icons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/public/images/icons/android-icon-72x72.png -------------------------------------------------------------------------------- /src/public/images/icons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/public/images/icons/android-icon-96x96.png -------------------------------------------------------------------------------- /src/public/images/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/public/images/icons/favicon.ico -------------------------------------------------------------------------------- /src/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/public/images/logo.png -------------------------------------------------------------------------------- /src/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/public/manifest.json -------------------------------------------------------------------------------- /src/seeding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/seeding.ts -------------------------------------------------------------------------------- /src/templates/components/header.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/components/header.njk -------------------------------------------------------------------------------- /src/templates/components/nav_links.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/components/nav_links.njk -------------------------------------------------------------------------------- /src/templates/components/theme_toggler.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/components/theme_toggler.njk -------------------------------------------------------------------------------- /src/templates/errors/http_error_debug.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/errors/http_error_debug.njk -------------------------------------------------------------------------------- /src/templates/errors/http_error_production.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/errors/http_error_production.njk -------------------------------------------------------------------------------- /src/templates/includes/pagination.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/includes/pagination.njk -------------------------------------------------------------------------------- /src/templates/layouts/_base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/layouts/_base.njk -------------------------------------------------------------------------------- /src/templates/layouts/app.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/layouts/app.njk -------------------------------------------------------------------------------- /src/templates/layouts/blank.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/layouts/blank.njk -------------------------------------------------------------------------------- /src/templates/macros/attr.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/macros/attr.njk -------------------------------------------------------------------------------- /src/templates/macros/breadcrumb.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/macros/breadcrumb.njk -------------------------------------------------------------------------------- /src/templates/macros/buttons.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/macros/buttons.njk -------------------------------------------------------------------------------- /src/templates/macros/dialog.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/macros/dialog.njk -------------------------------------------------------------------------------- /src/templates/macros/form.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/macros/form.njk -------------------------------------------------------------------------------- /src/templates/macros/icons.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/macros/icons.njk -------------------------------------------------------------------------------- /src/templates/macros/links.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/macros/links.njk -------------------------------------------------------------------------------- /src/templates/macros/month_navigator.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/macros/month_navigator.njk -------------------------------------------------------------------------------- /src/templates/pages/customers/_form.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/customers/_form.njk -------------------------------------------------------------------------------- /src/templates/pages/customers/add.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/customers/add.njk -------------------------------------------------------------------------------- /src/templates/pages/customers/edit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/customers/edit.njk -------------------------------------------------------------------------------- /src/templates/pages/customers/list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/customers/list.njk -------------------------------------------------------------------------------- /src/templates/pages/faircalendar/_event_list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/faircalendar/_event_list.njk -------------------------------------------------------------------------------- /src/templates/pages/faircalendar/_filters_form.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/faircalendar/_filters_form.njk -------------------------------------------------------------------------------- /src/templates/pages/faircalendar/_overview_badge.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/faircalendar/_overview_badge.njk -------------------------------------------------------------------------------- /src/templates/pages/faircalendar/events/_form.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/faircalendar/events/_form.njk -------------------------------------------------------------------------------- /src/templates/pages/faircalendar/events/add.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/faircalendar/events/add.njk -------------------------------------------------------------------------------- /src/templates/pages/faircalendar/events/edit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/faircalendar/events/edit.njk -------------------------------------------------------------------------------- /src/templates/pages/faircalendar/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/faircalendar/index.njk -------------------------------------------------------------------------------- /src/templates/pages/home.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/home.njk -------------------------------------------------------------------------------- /src/templates/pages/leave_requests/_form.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/leave_requests/_form.njk -------------------------------------------------------------------------------- /src/templates/pages/leave_requests/add.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/leave_requests/add.njk -------------------------------------------------------------------------------- /src/templates/pages/leave_requests/detail.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/leave_requests/detail.njk -------------------------------------------------------------------------------- /src/templates/pages/leave_requests/edit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/leave_requests/edit.njk -------------------------------------------------------------------------------- /src/templates/pages/leave_requests/list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/leave_requests/list.njk -------------------------------------------------------------------------------- /src/templates/pages/leave_requests/overview/days_remaining_cell.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/leave_requests/overview/days_remaining_cell.njk -------------------------------------------------------------------------------- /src/templates/pages/leave_requests/overview/days_remaining_column_header.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/leave_requests/overview/days_remaining_column_header.njk -------------------------------------------------------------------------------- /src/templates/pages/leave_requests/overview/user_cell.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/leave_requests/overview/user_cell.njk -------------------------------------------------------------------------------- /src/templates/pages/login.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/login.njk -------------------------------------------------------------------------------- /src/templates/pages/meal_tickets/add.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/meal_tickets/add.njk -------------------------------------------------------------------------------- /src/templates/pages/meal_tickets/list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/meal_tickets/list.njk -------------------------------------------------------------------------------- /src/templates/pages/payroll_elements/_filters_form.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/payroll_elements/_filters_form.njk -------------------------------------------------------------------------------- /src/templates/pages/payroll_elements/_leaves.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/payroll_elements/_leaves.njk -------------------------------------------------------------------------------- /src/templates/pages/payroll_elements/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/payroll_elements/index.njk -------------------------------------------------------------------------------- /src/templates/pages/profile/_form.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/profile/_form.njk -------------------------------------------------------------------------------- /src/templates/pages/profile/edit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/profile/edit.njk -------------------------------------------------------------------------------- /src/templates/pages/projects/_form.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/projects/_form.njk -------------------------------------------------------------------------------- /src/templates/pages/projects/add.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/projects/add.njk -------------------------------------------------------------------------------- /src/templates/pages/projects/edit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/projects/edit.njk -------------------------------------------------------------------------------- /src/templates/pages/projects/list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/projects/list.njk -------------------------------------------------------------------------------- /src/templates/pages/tasks/_form.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/tasks/_form.njk -------------------------------------------------------------------------------- /src/templates/pages/tasks/add.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/tasks/add.njk -------------------------------------------------------------------------------- /src/templates/pages/tasks/edit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/tasks/edit.njk -------------------------------------------------------------------------------- /src/templates/pages/tasks/list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/tasks/list.njk -------------------------------------------------------------------------------- /src/templates/pages/users/_form.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/users/_form.njk -------------------------------------------------------------------------------- /src/templates/pages/users/add.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/users/add.njk -------------------------------------------------------------------------------- /src/templates/pages/users/edit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/users/edit.njk -------------------------------------------------------------------------------- /src/templates/pages/users/list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/pages/users/list.njk -------------------------------------------------------------------------------- /src/templates/tables/cells/actions.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/tables/cells/actions.njk -------------------------------------------------------------------------------- /src/templates/tables/cells/picto.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/tables/cells/picto.njk -------------------------------------------------------------------------------- /src/templates/tables/inlinetable.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/tables/inlinetable.njk -------------------------------------------------------------------------------- /src/templates/tables/table.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/templates/tables/table.njk -------------------------------------------------------------------------------- /src/translations/fr-FR.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/src/translations/fr-FR.ftl -------------------------------------------------------------------------------- /tools/colorize_prefix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/tools/colorize_prefix.sh -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairnesscoop/permacoop/HEAD/tsconfig.json --------------------------------------------------------------------------------