├── .DS_Store ├── .annotaterb.yml ├── .codeclimate.yml ├── .cursor └── rules │ ├── rails_best_practices.mdc │ └── specs_best_practices.mdc ├── .cursorignore ├── .eslintrc.js ├── .github └── workflows │ └── flow_climate_build_production.yml ├── .gitignore ├── .husky └── pre-commit ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .ruby-gemset ├── .ruby-version ├── .travis.config ├── .vscode └── launch.json ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── app ├── adapters │ ├── base_flow_adapter.rb │ ├── highchart │ │ ├── burnup_adapter.rb │ │ ├── demands_charts_adapter.rb │ │ ├── finances_charts_adapter.rb │ │ ├── highchart_adapter.rb │ │ ├── portfolio_charts_adapter.rb │ │ ├── project_risk_charts_adapter.rb │ │ ├── projects_chart_adapter.rb │ │ ├── projects_consolidations_charts_adapter.rb │ │ ├── strategic_charts_adapter.rb │ │ ├── team_charts_adapter.rb │ │ └── team_member_adapter.rb │ └── jira │ │ └── jira_issue_adapter.rb ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── favicon.ico │ │ └── img-empty.png │ ├── javascripts │ │ ├── application.js │ │ ├── cable.js │ │ ├── channels │ │ │ └── .keep │ │ ├── charts │ │ │ ├── bar.js │ │ │ ├── burnup.js │ │ │ ├── chart-with-two-thresholds.js │ │ │ ├── column-line.js │ │ │ ├── column.js │ │ │ ├── donut.js │ │ │ ├── gauge.js │ │ │ ├── histogram.js │ │ │ ├── line.js │ │ │ ├── scatter.js │ │ │ ├── speedometer.js │ │ │ ├── stacked_area.js │ │ │ └── word_cloud.js │ │ ├── companies │ │ │ ├── company_navigation_behaviour.js │ │ │ ├── show.js │ │ │ └── strategic_charts.js │ │ ├── components │ │ │ └── components.js │ │ ├── contracts │ │ │ ├── contract-charts.js │ │ │ └── show.js │ │ ├── customers │ │ │ ├── customer-charts.js │ │ │ └── show.js │ │ ├── demand_blocks │ │ │ ├── form_modal.js │ │ │ ├── index.js │ │ │ └── list_modal.js │ │ ├── demands │ │ │ ├── column_throughput_week.js │ │ │ ├── demands_charts.js │ │ │ ├── demands_charts_action.js │ │ │ ├── demands_list.js │ │ │ ├── filter_binding.js │ │ │ ├── form_modal.js │ │ │ ├── index.js │ │ │ └── show.js │ │ ├── devise_customers │ │ │ └── home.js │ │ ├── finances │ │ │ ├── chart_builder.js │ │ │ └── show.js │ │ ├── flow_events │ │ │ ├── edit.js │ │ │ └── new.js │ │ ├── header │ │ │ └── show.js │ │ ├── jira_project_configs │ │ │ └── form_modal.js │ │ ├── memberships │ │ │ └── search_memberships.js │ │ ├── portfolio_units │ │ │ └── show.js │ │ ├── products │ │ │ ├── form.js │ │ │ ├── product_navigation_behaviour.js │ │ │ └── show.js │ │ ├── project_risk_configs │ │ │ └── new.js │ │ ├── projects │ │ │ ├── charts.js │ │ │ ├── closing_dashboard.js │ │ │ ├── eventline.js │ │ │ ├── form.js │ │ │ ├── index.js │ │ │ ├── projects_search.js │ │ │ ├── risk_alert_color_chart.js │ │ │ ├── running_projects_charts.js │ │ │ ├── show.js │ │ │ ├── status_report.js │ │ │ ├── status_report_current.js │ │ │ └── status_report_projection.js │ │ ├── replenishing_consolidations │ │ │ └── index.js │ │ ├── risk_reviews │ │ │ └── show.js │ │ ├── routes │ │ │ ├── chart_routes.js │ │ │ ├── company_routes.js │ │ │ ├── customer_routes.js │ │ │ ├── demand_routes.js │ │ │ ├── membership_routes.js │ │ │ ├── product_routes.js │ │ │ ├── project_routes.js │ │ │ ├── score_matrix_routes.js │ │ │ └── team_routes.js │ │ ├── score_matrices │ │ │ └── show.js │ │ ├── service_delivery_reviews │ │ │ └── show.js │ │ ├── slack_configurations │ │ │ └── index.js │ │ ├── stages │ │ │ ├── charts.js │ │ │ ├── form_modal.js │ │ │ └── show.js │ │ ├── stats_charts │ │ │ └── statistics_charts.js │ │ ├── team_members │ │ │ ├── pairings.js │ │ │ ├── show.js │ │ │ └── user_dashboard_operations_charts.js │ │ ├── teams │ │ │ ├── show.js │ │ │ ├── team_demands_filter.js │ │ │ ├── team_start_charts.js │ │ │ └── team_tabs_behaviour.js │ │ ├── top_navigation │ │ │ └── tab-navigation.js │ │ └── users │ │ │ ├── admin_dashboard.js │ │ │ ├── show.js │ │ │ └── user_dashboard_manager_charts.js │ └── stylesheets │ │ ├── application.css │ │ └── shared │ │ ├── accordion.css │ │ ├── charts.css │ │ ├── dashboard.css │ │ ├── error_404.css │ │ ├── eventline.css │ │ ├── finances.css │ │ ├── form.css │ │ ├── header_footer.css │ │ ├── help_components.css │ │ ├── index.css │ │ ├── navbar.css │ │ ├── price_table.css │ │ ├── product_tree.css │ │ ├── show.css │ │ ├── tables.css │ │ └── topnavbar.css ├── channels │ └── application_cable │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── charts_controller.rb │ ├── companies_controller.rb │ ├── company_working_hours_configs_controller.rb │ ├── concerns │ │ └── authentication.rb │ ├── contracts_controller.rb │ ├── customers_controller.rb │ ├── demand_blocks_controller.rb │ ├── demand_efforts_controller.rb │ ├── demand_score_matrices_controller.rb │ ├── demand_transitions_controller.rb │ ├── demands_controller.rb │ ├── demands_list_controller.rb │ ├── devise_custom │ │ └── users │ │ │ └── registrations_controller.rb │ ├── financial_informations_controller.rb │ ├── flow_events_controller.rb │ ├── graphql_controller.rb │ ├── home_controller.rb │ ├── item_assignments_controller.rb │ ├── jira │ │ ├── jira_accounts_controller.rb │ │ ├── jira_custom_field_mappings_controller.rb │ │ ├── jira_product_configs_controller.rb │ │ └── jira_project_configs_controller.rb │ ├── memberships_controller.rb │ ├── passwords_controller.rb │ ├── plans_controller.rb │ ├── portfolio_units_controller.rb │ ├── product_users_controller.rb │ ├── products_controller.rb │ ├── project_additional_hours_controller.rb │ ├── project_risk_alerts_controller.rb │ ├── project_risk_configs_controller.rb │ ├── projects_controller.rb │ ├── replenishing_consolidations_controller.rb │ ├── risk_review_action_items_controller.rb │ ├── risk_reviews_controller.rb │ ├── score_matrices_controller.rb │ ├── score_matrix_answers_controller.rb │ ├── score_matrix_questions_controller.rb │ ├── service_delivery_reviews_controller.rb │ ├── sessions_controller.rb │ ├── slack_configurations_controller.rb │ ├── stage_project_configs_controller.rb │ ├── stages_controller.rb │ ├── team_members_controller.rb │ ├── team_resource_allocations_controller.rb │ ├── team_resources_controller.rb │ ├── teams_controller.rb │ ├── user_company_roles_controller.rb │ ├── user_plans_controller.rb │ ├── users_controller.rb │ ├── webhook_integrations_controller.rb │ └── work_item_types_controller.rb ├── data_builders │ ├── demand_block_data_builder.rb │ └── demand_info_data_builder.rb ├── data_objects │ ├── base_aggregator_object.rb │ ├── customer_dashboard_data.rb │ ├── demand_blocks_list.rb │ ├── lead_time_control_chart_data.rb │ ├── project_member.rb │ ├── projects_list.rb │ ├── projects_summary_data.rb │ ├── replenishing_data.rb │ ├── scatter_data.rb │ └── stage_analytic_data.rb ├── graphql │ ├── flow_climate_schema.rb │ ├── mutations │ │ ├── base_mutation.rb │ │ ├── create_demand_effort.rb │ │ ├── create_portfolio_unit_mutation.rb │ │ ├── create_product_risk_review.rb │ │ ├── create_project_additional_hours_mutation.rb │ │ ├── create_service_delivery_review_action_mutation.rb │ │ ├── create_service_delivery_review_mutation.rb │ │ ├── create_team_mutation.rb │ │ ├── create_work_item_type_mutation.rb │ │ ├── delete_demand_mutation.rb │ │ ├── delete_product_risk_review.rb │ │ ├── delete_service_delivery_review_mutation.rb │ │ ├── delete_team_member_mutation.rb │ │ ├── delete_team_mutation.rb │ │ ├── delete_work_item_type_mutation.rb │ │ ├── discard_demand_mutation.rb │ │ ├── generate_project_cache_mutation.rb │ │ ├── generate_replenishing_cache_mutation.rb │ │ ├── save_membership_mutation.rb │ │ ├── send_auth_token_mutation.rb │ │ ├── synchronize_jira_project_config_mutation.rb │ │ ├── toggle_product_user_mutation.rb │ │ ├── update_demand_score_matrix.rb │ │ ├── update_jira_project_config_mutation.rb │ │ ├── update_portfolio_unit_mutation.rb │ │ ├── update_team_member_mutation.rb │ │ └── update_team_mutation.rb │ └── types │ │ ├── avatar_type.rb │ │ ├── background_queue_responses.rb │ │ ├── base_argument.rb │ │ ├── base_connection.rb │ │ ├── base_edge.rb │ │ ├── base_enum.rb │ │ ├── base_field.rb │ │ ├── base_input_object.rb │ │ ├── base_interface.rb │ │ ├── base_object.rb │ │ ├── base_scalar.rb │ │ ├── base_union.rb │ │ ├── charts │ │ ├── burnup_type.rb │ │ ├── charts_periods_type.rb │ │ ├── control_chart_type.rb │ │ ├── cumulative_flow_chart_type.rb │ │ ├── cumulative_flow_y_axis_type.rb │ │ ├── demands_flow_chart_data_type.rb │ │ ├── hours_per_stage_chart_type.rb │ │ ├── lead_time_breakdown_type.rb │ │ ├── lead_time_histogram_data_type.rb │ │ ├── leadtime_evolution_type.rb │ │ ├── project_hours_chart_data_type.rb │ │ ├── simple_chart_type.rb │ │ └── simple_date_chart_data_type.rb │ │ ├── companies_type.rb │ │ ├── company_type.rb │ │ ├── create_responses.rb │ │ ├── customer_type.rb │ │ ├── delete_operation_responses.rb │ │ ├── demand_block_type.rb │ │ ├── demand_blocks_list_type.rb │ │ ├── demand_effort_type.rb │ │ ├── demand_efforts_list_type.rb │ │ ├── demand_score_matrix_type.rb │ │ ├── demand_transition_type.rb │ │ ├── demand_type.rb │ │ ├── demands_list_type.rb │ │ ├── demands_query_attributes.rb │ │ ├── enums │ │ ├── demand_classes_of_service_type.rb │ │ ├── demand_statuses_type.rb │ │ ├── sort_criteria_type.rb │ │ ├── sort_direction.rb │ │ ├── target_quarter.rb │ │ └── work_item_level.rb │ │ ├── flow_event_type.rb │ │ ├── item_assignment_type.rb │ │ ├── jira_product_config_type.rb │ │ ├── jira_project_config_type.rb │ │ ├── monthly_investment_type.rb │ │ ├── mutation_type.rb │ │ ├── node_type.rb │ │ ├── portfolio_unit_type.rb │ │ ├── product_type.rb │ │ ├── project_additional_hour_type.rb │ │ ├── project_consolidation_type.rb │ │ ├── project_member_type.rb │ │ ├── project_simulation_type.rb │ │ ├── project_type.rb │ │ ├── projects_list_type.rb │ │ ├── query_type.rb │ │ ├── replenishing_consolidation_type.rb │ │ ├── risk_review_action_item_type.rb │ │ ├── risk_review_type.rb │ │ ├── score_matrix_answer_type.rb │ │ ├── score_matrix_question_type.rb │ │ ├── score_matrix_type.rb │ │ ├── service_delivery_review_action_item_type.rb │ │ ├── service_delivery_review_type.rb │ │ ├── stage_type.rb │ │ ├── teams │ │ ├── member_efficiency_data_type.rb │ │ ├── member_efficiency_list_type.rb │ │ ├── member_hour_value_chart_data_type.rb │ │ ├── membership_hour_value_chart_list_type.rb │ │ ├── membership_type.rb │ │ ├── team_member_hour_value_chart_list_type.rb │ │ ├── team_member_type.rb │ │ └── team_type.rb │ │ ├── update_responses.rb │ │ ├── user_type.rb │ │ └── work_item_type_type.rb ├── helpers │ ├── application_helper.rb │ ├── date_helper.rb │ ├── demand_blocks_helper.rb │ ├── filter_helper.rb │ ├── portfolio_unit_helper.rb │ └── spa_helper.rb ├── jobs │ ├── application_job.rb │ ├── consolidations │ │ ├── contract_consolidation_job.rb │ │ ├── customer_consolidation_job.rb │ │ ├── project_consolidation_job.rb │ │ ├── replenishing_consolidation_job.rb │ │ └── team_consolidation_job.rb │ ├── dashboards │ │ └── operations_dashboard_cache_job.rb │ ├── jira │ │ ├── process_jira_issue_job.rb │ │ └── process_jira_project_job.rb │ ├── project_risk_monitor_job.rb │ ├── risk_review_generator_job.rb │ ├── service_delivery_review_generator_job.rb │ └── slack │ │ ├── demand_slack_notifications_job.rb │ │ └── slack_notifications_job.rb ├── mailers │ ├── application_mailer.rb │ ├── passwords_mailer.rb │ └── user_notifier_mailer.rb ├── models │ ├── application_record.rb │ ├── company.rb │ ├── company_settings.rb │ ├── company_working_hours_config.rb │ ├── concerns │ │ ├── .keep │ │ └── demandable.rb │ ├── consolidations │ │ ├── contract_consolidation.rb │ │ ├── customer_consolidation.rb │ │ ├── project_consolidation.rb │ │ ├── replenishing_consolidation.rb │ │ └── team_consolidation.rb │ ├── contract.rb │ ├── contract_estimation_change_history.rb │ ├── current.rb │ ├── customer.rb │ ├── customers_devise_customer.rb │ ├── customers_project.rb │ ├── dashboards │ │ ├── operations_dashboard.rb │ │ └── operations_dashboard_pairing.rb │ ├── demand.rb │ ├── demand_block.rb │ ├── demand_comment.rb │ ├── demand_effort.rb │ ├── demand_score_matrix.rb │ ├── demand_transition.rb │ ├── devise_customer.rb │ ├── financial_information.rb │ ├── flow │ │ ├── block_flow_information.rb │ │ ├── contracts_flow_information.rb │ │ ├── membership_flow_information.rb │ │ ├── statistics_flow_information.rb │ │ ├── system_flow_information.rb │ │ ├── time_flow_information.rb │ │ └── work_item_flow_information.rb │ ├── flow_event.rb │ ├── history │ │ ├── class_of_service_change_history.rb │ │ └── membership_available_hours_history.rb │ ├── item_assignment.rb │ ├── jira │ │ ├── jira_account.rb │ │ ├── jira_api_error.rb │ │ ├── jira_custom_field_mapping.rb │ │ ├── jira_portfolio_unit_config.rb │ │ ├── jira_product_config.rb │ │ └── jira_project_config.rb │ ├── membership.rb │ ├── notifications │ │ └── demand_block_notification.rb │ ├── plan.rb │ ├── portfolio_unit.rb │ ├── product.rb │ ├── product_user.rb │ ├── products_project.rb │ ├── project.rb │ ├── project_additional_hour.rb │ ├── project_broken_wip_log.rb │ ├── project_change_deadline_history.rb │ ├── project_risk_alert.rb │ ├── project_risk_config.rb │ ├── risk_review.rb │ ├── risk_review_action_item.rb │ ├── score_matrix.rb │ ├── score_matrix_answer.rb │ ├── score_matrix_question.rb │ ├── service_delivery_review.rb │ ├── service_delivery_review_action_item.rb │ ├── session.rb │ ├── slack_configuration.rb │ ├── stage.rb │ ├── stage_project_config.rb │ ├── stages_team.rb │ ├── team.rb │ ├── team_member.rb │ ├── team_resource.rb │ ├── team_resource_allocation.rb │ ├── user.rb │ ├── user_company_role.rb │ ├── user_invite.rb │ ├── user_plan.rb │ ├── user_project_role.rb │ └── work_item_type.rb ├── readers │ └── jira │ │ └── jira_reader.rb ├── repositories │ ├── demand_blocks_repository.rb │ ├── demand_transitions_repository.rb │ ├── demands_repository.rb │ ├── memberships_repository.rb │ ├── project_risk_alerts_repository.rb │ ├── projects_repository.rb │ └── stages_repository.rb ├── services │ ├── collections_service.rb │ ├── contract_service.rb │ ├── demand_effort_service.rb │ ├── demand_score_matrix_service.rb │ ├── demand_service.rb │ ├── jira │ │ └── jira_api_service.rb │ ├── project_service.rb │ ├── risk_review_service.rb │ ├── security │ │ └── encryption_service.rb │ ├── service_delivery_review_service.rb │ ├── slack │ │ └── slack_notification_service.rb │ ├── stats │ │ └── statistics_service.rb │ ├── team_service.rb │ ├── time_service.rb │ └── user_invite_service.rb ├── spa │ ├── .gitignore │ ├── .nvmrc │ ├── .prettierrc │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── default.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ ├── robots.txt │ │ └── taller_logo.png │ ├── src │ │ ├── App.tsx │ │ ├── Routes.tsx │ │ ├── amplitude │ │ │ └── amplitudeEvents.ts │ │ ├── components │ │ │ ├── BasicPage.tsx │ │ │ ├── Breadcrumbs.tsx │ │ │ ├── Card.tsx │ │ │ ├── DemandsPage.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Header.tsx │ │ │ ├── MessagesBox.tsx │ │ │ ├── Projects │ │ │ │ ├── ProjectChartsTable.tsx │ │ │ │ ├── ProjectDemandsCharts.tsx │ │ │ │ └── ProjectPage.tsx │ │ │ ├── ReadMoreButton.tsx │ │ │ ├── ReplenishingProjectsInfo.tsx │ │ │ ├── ReplenishingTeamInfo.tsx │ │ │ ├── TabPanel.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── TeamMemberDashboardCharts.tsx │ │ │ ├── TeamMemberDashboardTables.tsx │ │ │ ├── Ticket.tsx │ │ │ ├── TicketGroup.tsx │ │ │ ├── charts │ │ │ │ ├── BarChart.tsx │ │ │ │ ├── ChartGridItem.tsx │ │ │ │ ├── LineChart.tsx │ │ │ │ ├── PieChart.tsx │ │ │ │ ├── ScatterChart.tsx │ │ │ │ └── tooltips │ │ │ │ │ ├── BarChartTooltip.tsx │ │ │ │ │ ├── LineChartTooltip.tsx │ │ │ │ │ └── ScatterChartTooltip.tsx │ │ │ ├── menu │ │ │ │ └── ActionMenu.tsx │ │ │ └── ui │ │ │ │ ├── DateLocale.tsx │ │ │ │ ├── Form.tsx │ │ │ │ └── Table.tsx │ │ ├── contexts │ │ │ ├── MeContext.tsx │ │ │ └── MessageContext.tsx │ │ ├── hooks │ │ │ ├── useMessages.tsx │ │ │ ├── useProductQuery.ts │ │ │ └── useProjectInfo.ts │ │ ├── index.tsx │ │ ├── lib │ │ │ ├── ApiProvider.tsx │ │ │ ├── ThemeProvider.tsx │ │ │ ├── __tests__ │ │ │ │ ├── currency.ts │ │ │ │ └── date.ts │ │ │ ├── charts.ts │ │ │ ├── currency.ts │ │ │ ├── date.ts │ │ │ └── i18n.ts │ │ ├── locales │ │ │ ├── en │ │ │ │ ├── common.json │ │ │ │ ├── customer.json │ │ │ │ ├── demand.json │ │ │ │ ├── demandEffort.json │ │ │ │ ├── generalProjectPage.json │ │ │ │ ├── header.json │ │ │ │ ├── jiraProjectConfig.json │ │ │ │ ├── jiraProjectConfigList.json │ │ │ │ ├── membership.json │ │ │ │ ├── products.json │ │ │ │ ├── projectChart.json │ │ │ │ ├── projectFinancialReport.json │ │ │ │ ├── projects.json │ │ │ │ ├── riskReview.json │ │ │ │ ├── serviceDeliveryReview.json │ │ │ │ ├── statusReport.json │ │ │ │ ├── teamMembers.json │ │ │ │ ├── teams.json │ │ │ │ └── workItemTypes.json │ │ │ └── pt │ │ │ │ ├── common.json │ │ │ │ ├── customer.json │ │ │ │ ├── demand.json │ │ │ │ ├── demandEffort.json │ │ │ │ ├── generalProjectPage.json │ │ │ │ ├── header.json │ │ │ │ ├── jiraProjectConfig.json │ │ │ │ ├── jiraProjectConfigList.json │ │ │ │ ├── membership.json │ │ │ │ ├── products.json │ │ │ │ ├── projectChart.json │ │ │ │ ├── projectFinancialReport.json │ │ │ │ ├── projects.json │ │ │ │ ├── riskReview.json │ │ │ │ ├── serviceDeliveryReview.json │ │ │ │ ├── statusReport.json │ │ │ │ ├── teamMembers.json │ │ │ │ ├── teams.json │ │ │ │ └── workItemTypes.json │ │ ├── logo.svg │ │ ├── modules │ │ │ ├── charts │ │ │ │ ├── charts.types.ts │ │ │ │ ├── components │ │ │ │ │ └── LeadtimeEvolutionChart.tsx │ │ │ │ └── controlChart.types.ts │ │ │ ├── company │ │ │ │ └── company.types.ts │ │ │ ├── contracts │ │ │ │ └── ActiveContractsHoursTicket.tsx │ │ │ ├── customer │ │ │ │ └── customer.types.ts │ │ │ ├── demand │ │ │ │ ├── components │ │ │ │ │ ├── DemandBasicPage.tsx │ │ │ │ │ └── LatestDeliveriesTable.tsx │ │ │ │ └── demand.types.ts │ │ │ ├── demandEffort │ │ │ │ ├── components │ │ │ │ │ └── CreateDemandEffort.tsx │ │ │ │ └── demandEffort.types.ts │ │ │ ├── flowEvent │ │ │ │ └── flowEvent.types.ts │ │ │ ├── product │ │ │ │ ├── components │ │ │ │ │ ├── ProductBVPTab.tsx │ │ │ │ │ ├── ProductCharts.tsx │ │ │ │ │ ├── ProductDetails.tsx │ │ │ │ │ ├── ProductGeneralInfo.tsx │ │ │ │ │ ├── ProductGeneralInfoTable.tsx │ │ │ │ │ ├── ServiceDeliveryReviewActions.tsx │ │ │ │ │ ├── ServiceDeliveryReviewActionsModal.tsx │ │ │ │ │ ├── ServiceDeliveryReviewCharts.tsx │ │ │ │ │ ├── ServiceDeliveryReviewDetails.tsx │ │ │ │ │ ├── ServiceDeliveryReviewModal.tsx │ │ │ │ │ └── ServiceDeliveryReviewsTable.tsx │ │ │ │ ├── portfolioUnit.types.ts │ │ │ │ └── product.types.ts │ │ │ ├── project │ │ │ │ ├── components │ │ │ │ │ ├── ProjectMonteCarloData.tsx │ │ │ │ │ ├── ProjectMonteCarloTeamData.tsx │ │ │ │ │ ├── ProjectRiskCards.tsx │ │ │ │ │ ├── ProjectRiskSimulation.tsx │ │ │ │ │ ├── ProjectsList.tsx │ │ │ │ │ ├── ProjectsSearchForm.tsx │ │ │ │ │ └── ProjectsTable.tsx │ │ │ │ ├── jiraProjectConfig.types.ts │ │ │ │ ├── project.types.ts │ │ │ │ └── projectConsolidation.types.ts │ │ │ ├── replenishing │ │ │ │ └── replenishingConsolidation.types.ts │ │ │ ├── stage │ │ │ │ └── stage.types.ts │ │ │ ├── team │ │ │ │ ├── components │ │ │ │ │ └── TeamBasicPage.tsx │ │ │ │ └── team.types.ts │ │ │ ├── teamMember │ │ │ │ ├── components │ │ │ │ │ └── TeamMemberEffortDailyData.tsx │ │ │ │ └── teamMember.types.ts │ │ │ └── user │ │ │ │ ├── AmplitudeUser.types.ts │ │ │ │ └── user.types.ts │ │ ├── pages │ │ │ ├── Customer │ │ │ │ └── CustomerDemand.tsx │ │ │ ├── Demand │ │ │ │ ├── DemandEfforts.tsx │ │ │ │ ├── DemandsCharts.tsx │ │ │ │ └── DemandsList.tsx │ │ │ ├── Jira │ │ │ │ ├── EditJiraProjectConfig.tsx │ │ │ │ └── JiraProjectConfigList.tsx │ │ │ ├── Products │ │ │ │ ├── CreatePortfolioUnits.tsx │ │ │ │ ├── CreateProductRiskReview.tsx │ │ │ │ ├── EditPortfolioUnits.tsx │ │ │ │ ├── PortfolioUnitsPage.tsx │ │ │ │ ├── ProductPage.tsx │ │ │ │ ├── ProductUsersList.tsx │ │ │ │ ├── ProductUsersPage.tsx │ │ │ │ ├── ProductsRiskReviews.tsx │ │ │ │ ├── ServiceDeliveryReview.tsx │ │ │ │ ├── ServiceDeliveryReviews.tsx │ │ │ │ └── ShowProductsRiskReview.tsx │ │ │ ├── Projects │ │ │ │ ├── Charts │ │ │ │ │ ├── ProjectBugsPercentage.tsx │ │ │ │ │ ├── ProjectBurnup.tsx │ │ │ │ │ ├── ProjectCumulativeFlowData.tsx │ │ │ │ │ ├── ProjectDeliveriesByClassOfService.tsx │ │ │ │ │ ├── ProjectFlowEfficiency.tsx │ │ │ │ │ ├── ProjectHoursBurnup.tsx │ │ │ │ │ ├── ProjectLeadTime.tsx │ │ │ │ │ ├── ProjectLeadTimeControlChart.tsx │ │ │ │ │ ├── ProjectOperationalRiskEvolution.tsx │ │ │ │ │ └── ProjectStatusReportCharts.tsx │ │ │ │ ├── CreateProjectAditionalHours.tsx │ │ │ │ ├── DemandsCharts.tsx │ │ │ │ ├── LeadTimeDashboard.tsx │ │ │ │ ├── Project.tsx │ │ │ │ ├── ProjectFinancialReport.tsx │ │ │ │ ├── ProjectsPage.tsx │ │ │ │ ├── RiskDrill.tsx │ │ │ │ ├── Statistics.tsx │ │ │ │ └── StatusReport.tsx │ │ │ ├── TeamMembers │ │ │ │ ├── EditTeamMember.tsx │ │ │ │ ├── TeamMemberDashboard.tsx │ │ │ │ └── TeamMembers.tsx │ │ │ ├── Teams │ │ │ │ ├── CreateTeam.tsx │ │ │ │ ├── EditTeam.tsx │ │ │ │ ├── MemberEfficiencyTable.tsx │ │ │ │ ├── MemberGeneralInfo.tsx │ │ │ │ ├── MembershipForm.tsx │ │ │ │ ├── MembershipsTable.tsx │ │ │ │ ├── Replenishing.tsx │ │ │ │ ├── TeamDashboard.tsx │ │ │ │ └── Teams.tsx │ │ │ ├── Users │ │ │ │ └── ManagerDashboard.tsx │ │ │ └── WorkItemTypes │ │ │ │ ├── CreateWorkItemType.tsx │ │ │ │ └── ListWorkItemTypes.tsx │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ ├── setupTests.ts │ │ └── utils │ │ │ ├── charts.ts │ │ │ └── formatRelativeDate.ts │ └── tsconfig.json ├── uploaders │ └── flow_climate_image_uploader.rb └── views │ ├── charts │ ├── _aging_by_project.html.erb │ ├── _block_by_project_stats.html.erb │ ├── _blocks_variation_stats.html.erb │ ├── _chart_stats_body.html.erb │ ├── _charts_stats_filter.html.erb │ ├── _lead_time_data_range_evolution.html.erb │ ├── _lead_time_histogram_data_range_evolution.html.erb │ ├── _lead_time_interquartile_data_range_evolution.html.erb │ ├── _lead_time_interquartile_histogram_range_evolution.html.erb │ ├── _leadtime_variation_stats.html.erb │ ├── _portfolio_charts.html.erb │ ├── _risks_and_hours_gauge_charts.html.erb │ ├── _scope_variation_stats.html.erb │ ├── _statistics_charts.html.erb │ ├── _strategic_charts.html.erb │ ├── _strategic_charts_tab.html.erb │ ├── _timeline.html.erb │ └── strategic_charts.js.erb │ ├── common │ └── dashboards │ │ ├── _general_info.html.erb │ │ └── _projects_info.html.erb │ ├── companies │ ├── _companies_table.html.erb │ ├── _company_settings.html.erb │ ├── _company_stamps.html.erb │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── risks_tab.js.erb │ ├── show.html.erb │ └── update_settings.js.erb │ ├── company_working_hours_configs │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ └── new.html.erb │ ├── contracts │ ├── _contracts_table.html.erb │ ├── _form.html.erb │ ├── dashboards │ │ └── _contracts_dashboard.html.erb │ ├── edit.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── customers │ ├── _customer_stamps.html.erb │ ├── _customers_table.html.erb │ ├── _form.html.erb │ ├── _form_user_invite_to_customer.html.erb │ ├── dashboards │ │ └── _customer_dashboard.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── demand_blocks │ ├── _demand_block_fields.html.erb │ ├── _demand_blocks_filter.html.erb │ ├── _demand_blocks_table.html.erb │ ├── _edit.html.erb │ ├── _form.html.erb │ ├── activate_deactivate_block.js.erb │ ├── edit.html.erb │ ├── edit.js.erb │ ├── index.html.erb │ └── update.js.erb │ ├── demand_comments │ └── _demand_comments_table.html.erb │ ├── demand_efforts │ ├── _demand_efforts_table.html.erb │ └── edit.html.erb │ ├── demand_transitions │ ├── _demand_transitions_table.html.erb │ ├── _edit.html.erb │ ├── _form.html.erb │ ├── _new.html.erb │ ├── create.js.erb │ ├── edit.js.erb │ ├── new.js.erb │ └── update.js.erb │ ├── demands │ ├── _demand_actions.html.erb │ ├── _demand_fields.html.erb │ ├── _demand_stamps.html.erb │ ├── _demands_charts.html.erb │ ├── _demands_leadtime_container.html.erb │ ├── _demands_search_filters.html.erb │ ├── _demands_short_table.html.erb │ ├── _demands_table.html.erb │ ├── _discarded_demands_table.html.erb │ ├── _form.html.erb │ ├── _general_info.html.erb │ ├── _portfolio_demands_table.html.erb │ ├── _project_dashboard_demands_table.html.erb │ ├── _unscored_demands.html.erb │ ├── destroy_physically.js.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── portfolio_demands_tab.js.erb │ ├── score_matrix │ │ ├── _form.html.erb │ │ └── score_research.html.erb │ ├── show.html.erb │ └── update.js.erb │ ├── devise_customers │ ├── contracts │ │ ├── _contracts_table.html.erb │ │ └── show.html.erb │ ├── customer_demands │ │ └── _demands_table.html.erb │ └── dashboard │ │ ├── home.html.erb │ │ └── search.js.erb │ ├── exports │ └── request_project_information.html.erb │ ├── financial_informations │ ├── _finances_charts.html.erb │ ├── _finances_list.html.erb │ ├── _finances_tab.html.erb │ ├── _form.html.erb │ ├── _statistics_list.html.erb │ ├── edit.html.erb │ └── new.html.erb │ ├── flow_events │ ├── _flow_events_table.html.erb │ ├── _form.html.erb │ ├── demands_to_project.js.erb │ ├── destroy.js.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── search_projects_by_team.js.erb │ └── show.html.erb │ ├── home │ └── show.html.erb │ ├── item_assignments │ ├── _item_assignments_table.html.erb │ └── destroy.js.erb │ ├── jira │ ├── jira_accounts │ │ ├── _jira_accounts_table.html.erb │ │ ├── destroy.js.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── jira_custom_field_mappings │ │ ├── _edit.html.erb │ │ ├── _form.html.erb │ │ ├── _jira_custom_field_mapping_fields.html.erb │ │ ├── _jira_custom_field_mappings_table.html.erb │ │ ├── _new.html.erb │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.js.erb │ │ ├── new.js.erb │ │ └── update.js.erb │ ├── jira_product_configs │ │ ├── _jira_product_configs_table.html.erb │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ └── jira_project_configs │ │ ├── _jira_project_config_table.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── synchronize_jira.js.erb │ ├── kaminari │ ├── _first_page.html.erb │ ├── _gap.html.erb │ ├── _last_page.html.erb │ ├── _next_page.html.erb │ ├── _page.html.erb │ ├── _paginator.html.erb │ └── _prev_page.html.erb │ ├── layouts │ ├── 404.html.erb │ ├── _alert.html.erb │ ├── _error.html.erb │ ├── _footer.html.erb │ ├── _header.html.erb │ ├── _header_menu.html.erb │ ├── _load_spinner.html.erb │ ├── _no_data.html.erb │ ├── _notice.html.erb │ ├── _user_header_menu.html.erb │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ ├── passwords │ ├── edit.html.erb │ └── new.html.erb │ ├── passwords_mailer │ ├── reset.html.erb │ └── reset.text.erb │ ├── plans │ └── no_plan.html.erb │ ├── portfolio_units │ ├── _form.html.erb │ ├── _portfolio_units_tab.html.erb │ ├── _portfolio_units_table.html.erb │ ├── edit.html.erb │ ├── portfolio_charts_tab.js.erb │ ├── portfolio_units_tab.js.erb │ ├── show.html.erb │ └── update.js.erb │ ├── products │ ├── _form.html.erb │ ├── _product_settings.html.erb │ ├── _product_stamps.html.erb │ ├── _product_tree.html.erb │ ├── _products_table.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── products.js.erb │ └── show.html.erb │ ├── project_risk_alerts │ ├── _project_risk_alerts_table.html.erb │ └── index.html.erb │ ├── project_risk_configs │ ├── _form.html.erb │ └── new.html.erb │ ├── projects │ ├── _customers_in_project.html.erb │ ├── _form.html.erb │ ├── _products_in_project.html.erb │ ├── _project_actions.html.erb │ ├── _project_customers_tab.html.erb │ ├── _project_products_tab.html.erb │ ├── _project_risk_indicators.html.erb │ ├── _project_risk_settings.html.erb │ ├── _projects_table.html.erb │ ├── associate_dissociate_customer.js.erb │ ├── associate_dissociate_product.js.erb │ ├── edit.html.erb │ ├── new.html.erb │ └── projects_tab.js.erb │ ├── risk_review_action_items │ ├── _form.html.erb │ ├── _new.html.erb │ ├── _risk_review_action_items_table.html.erb │ ├── create.js.erb │ ├── destroy.js.erb │ └── new.js.erb │ ├── risk_reviews │ ├── _edit.html.erb │ ├── _form.html.erb │ ├── _new.html.erb │ ├── _risk_review_details.html.erb │ ├── _risk_reviews_table.html.erb │ ├── create.js.erb │ ├── destroy.js.erb │ ├── edit.js.erb │ ├── new.js.erb │ ├── risk_reviews_tab.js.erb │ └── update.js.erb │ ├── score_matrices │ ├── _score_matrix_table.html.erb │ ├── score_matrix_dimensions.js.erb │ └── show.html.erb │ ├── score_matrix_answers │ ├── _score_matrix_answers_table.html.erb │ ├── create.js.erb │ └── destroy.js.erb │ ├── score_matrix_questions │ ├── _form.html.erb │ ├── _score_matrix_questions_table.html.erb │ ├── destroy.js.erb │ ├── edit.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── service_delivery_review_action_items │ ├── _form.html.erb │ ├── _new.html.erb │ ├── _service_delivery_review_action_items_table.html.erb │ ├── create.js.erb │ ├── destroy.js.erb │ └── new.js.erb │ ├── sessions │ └── new.html.erb │ ├── slack_configurations │ ├── _form.html.erb │ ├── _slack_config_fields.html.erb │ ├── _slack_config_table.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── toggle_active.js.erb │ ├── stage_project_configs │ ├── _form.html.erb │ ├── edit.html.erb │ └── index.html.erb │ ├── stages │ ├── _edit.html.erb │ ├── _form.html.erb │ ├── _stage_charts.html.erb │ ├── _stage_fields.html.erb │ ├── _stage_project_associations.html.erb │ ├── _stage_project_config.html.erb │ ├── _stage_teams_associations.html.erb │ ├── _stage_transitions.html.erb │ ├── _stages_table.html.erb │ ├── associate_dissociate_team.js.erb │ ├── edit.js.erb │ ├── new.html.erb │ ├── show.html.erb │ └── update.js.erb │ ├── team_members │ ├── _blocks_summary.html.erb │ ├── _projects_summary.html.erb │ ├── _statistics_informations.html.erb │ ├── _teams_summary.html.erb │ └── dashboards │ │ └── _operations_dashboard.html.erb │ ├── team_resource_allocations │ ├── _form.html.erb │ ├── _new.html.erb │ ├── _team_resource_allocations_table.html.erb │ ├── create.js.erb │ ├── destroy.js.erb │ └── new.js.erb │ ├── team_resources │ ├── _form.html.erb │ ├── _new.html.erb │ ├── _team_resources_table.html.erb │ ├── create.js.erb │ ├── destroy.js.erb │ └── new.js.erb │ ├── teams │ ├── _stats_throughput_details.html.erb │ ├── _team_menu.html.erb │ ├── _team_projects_tab.html.erb │ ├── dashboards │ │ ├── _dashboard_body.html.erb │ │ ├── _dashboard_tab_page_five.html.erb │ │ ├── _dashboard_tab_page_three.html.erb │ │ ├── _dashboard_tab_page_two.html.erb │ │ ├── dashboard_page_five.js.erb │ │ ├── dashboard_page_four.js.erb │ │ ├── dashboard_page_three.js.erb │ │ ├── dashboard_page_two.js.erb │ │ └── dashboard_tab.js.erb │ ├── show.html.erb │ └── team_projects_tab.js.erb │ ├── user_company_roles │ ├── _form.html.erb │ ├── edit.html.erb │ └── new.html.erb │ ├── user_notifier_mailer │ ├── _email_signature.html.erb │ ├── async_activity_finished.html.erb │ ├── company_weekly_bulletin.html.erb │ ├── jira_requested_csv.html.erb │ ├── notify_new_red_alert.html.erb │ ├── plan_requested.html.erb │ ├── send_auth_token.html.erb │ └── user_invite_to_customer.html.erb │ ├── user_plans │ └── index.html.erb │ └── users │ ├── _company_info.html.erb │ ├── _manager_dashboard.html.erb │ ├── _operations_personal_info.html.erb │ ├── _user_dashboard_company_tab.html.erb │ ├── _user_plans_table.html.erb │ ├── _users_short_table.html.erb │ ├── _users_table.html.erb │ ├── admin_dashboard.html.erb │ ├── edit.html.erb │ ├── reload_notifications.js.erb │ └── show.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── application.yml.example ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── staging.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── carrierwave.rb │ ├── cloudinary.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── friendly_id.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── rack_profiler.rb │ ├── rollbar.rb │ ├── sendgrid.rb │ ├── session_store.rb │ ├── sidekiq.rb │ └── wrap_parameters.rb ├── locales │ ├── action_mailer.en.yml │ ├── action_mailer.pt-BR.yml │ ├── active_model.en.yml │ ├── active_model.pt-BR.yml │ ├── api.en.yml │ ├── api.pt-BR.yml │ ├── controllers.en.yml │ ├── controllers.pt-BR.yml │ ├── devise.en.yml │ ├── devise.pt-BR.yml │ ├── en.yml │ └── pt-BR.yml ├── newrelic.yml ├── puma.rb ├── rails_best_practices.yml ├── routes.rb ├── sidekiq.yml └── spring.rb ├── db ├── migrate │ ├── 20180111164501_devise_create_users.rb │ ├── 20180111170136_create_companies.rb │ ├── 20180111180016_create_financial_informations.rb │ ├── 20180111232828_create_customers.rb │ ├── 20180111234624_create_projects.rb │ ├── 20180112002920_create_project_weekly_results.rb │ ├── 20180112010014_create_operation_weekly_results.rb │ ├── 20180112010152_create_team_members.rb │ ├── 20180112161621_rename_project_weekly_result_to_project_result.rb │ ├── 20180112182233_add_fields_to_operation_weekly_result.rb │ ├── 20180113231517_rename_operation_weekly_result_to_operation_result.rb │ ├── 20180115152551_create_teams.rb │ ├── 20180116022142_add_column_abbreviation_to_company.rb │ ├── 20180116205144_add_team_to_project_result.rb │ ├── 20180116235900_remove_projects_teams_relation.rb │ ├── 20180117150255_create_products.rb │ ├── 20180122211258_add_monte_carlo_date_to_project_result.rb │ ├── 20180123032144_remove_columns_histogram_from_project_result.rb │ ├── 20180126021945_add_count_counter_caches.rb │ ├── 20180126152312_add_demands_ids_to_project_result.rb │ ├── 20180126155811_create_demands.rb │ ├── 20180126175210_unique_name_to_product_project_team.rb │ ├── 20180127180639_add_notification_email_preference_to_user.rb │ ├── 20180128150500_create_project_risk_configs.rb │ ├── 20180128155627_create_project_risk_alerts.rb │ ├── 20180203152518_add_flow_pressure_field_to_project_result.rb │ ├── 20180204121055_change_risk_config_to_project.rb │ ├── 20180204213721_add_active_to_project_risk_config.rb │ ├── 20180206183551_add_average_demand_cost_to_project_result.rb │ ├── 20180207231739_add_column_available_hours.rb │ ├── 20180208112930_create_company_settings.rb │ ├── 20180209180125_add_control_columns_to_demand.rb │ ├── 20180209223011_create_pipefy_configs.rb │ ├── 20180213155318_add_created_date_to_demand.rb │ ├── 20180215151505_add_company_to_pipefy_config.rb │ ├── 20180215201832_add_hours_based_payment_to_team_member.rb │ ├── 20180216160706_add_url_to_demand.rb │ ├── 20180216231515_rename_column_cost_in_week_to_cost_in_month.rb │ ├── 20180221160521_add_class_of_service_to_demand.rb │ ├── 20180223211920_create_stages.rb │ ├── 20180224031304_create_demand_trasitions.rb │ ├── 20180224142451_change_column_null_created_date_in_demands.rb │ ├── 20180302152036_add_manual_flag_to_project_result.rb │ ├── 20180302225234_add_assignees_count_to_demand.rb │ ├── 20180303002459_create_demand_blocks.rb │ ├── 20180306142224_add_active_to_pipefy_config.rb │ ├── 20180307203657_create_pipefy_team_configs.rb │ ├── 20180312220710_create_integration_errors.rb │ ├── 20180313152829_change_demands_created_date_null.rb │ ├── 20180315163004_add_project_id_to_integration_errors.rb │ ├── 20180316131931_add_team_to_product.rb │ ├── 20180316210405_add_company_to_stage.rb │ ├── 20180320180443_add_column_active_to_demand_blocks.rb │ ├── 20180331235053_create_project_change_deadline_histories.rb │ ├── 20180403230254_add_nickname_to_project.rb │ ├── 20180407032019_add_upstream_effort_to_demand.rb │ ├── 20180410163615_add_model_name_to_integration_error.rb │ ├── 20180411164401_add_order_to_stage.rb │ ├── 20180412202504_add_leadtime_to_demand.rb │ ├── 20180417193029_add_downstream_boolean_to_demands.rb │ ├── 20180510203203_create_stage_project_configs.rb │ ├── 20180514210852_add_manual_effort_boolean_to_demand.rb │ ├── 20180516150858_add_queue_information_to_demand.rb │ ├── 20180529194024_add_title_to_demand.rb │ ├── 20180530210436_add_integration_pipe_id_to_stages.rb │ ├── 20180604224141_add_effort_share_in_month.rb │ ├── 20180615182356_add_unique_index_to_demand_id.rb │ ├── 20180618185639_add_block_type_to_demand_block.rb │ ├── 20180619150458_add_leadtime_percentiles_to_project_result.rb │ ├── 20180620014718_add_percentage_effort_bugs_to_project.rb │ ├── 20180627232834_add_discard_to_demand_and_transition.rb │ ├── 20180703233113_create_project_jira_configs.rb │ ├── 20180731181345_change_demands_effort_columns_to_decimal.rb │ ├── 20180820175021_add_discard_to_demand_blocks.rb │ ├── 20180822231503_add_fix_version_name_to_project_jira_config.rb │ ├── 20180830205543_drop_table_operation_results.rb │ ├── 20180915020210_add_team_to_project.rb │ ├── 20181008191022_add_fix_version_to_unique_keys_in_project_jira_config.rb │ ├── 20181022220910_drop_table_project_results.rb │ ├── 20181210181733_create_user_project_role.rb │ ├── 20181210193253_create_plan.rb │ ├── 20190108182426_add_column_backlog_type.rb │ ├── 20190121231612_create_view_to_demands_list.rb │ ├── 20190124222658_add_demand_title_to_view_demands_list.rb │ ├── 20190211141716_change_default_boolean_to_downstream_demand.rb │ ├── 20190212180057_add_slug_to_demands.rb │ ├── 20190212180201_create_friendly_id_slugs.rb │ ├── 20190212181729_add_slug_to_demands_list.rb │ ├── 20190212183127_add_slug_to_companies.rb │ ├── 20190215153227_add_avatar_to_users.rb │ ├── 20190216181219_remove_reason_from_demand_block.rb │ ├── 20190318221048_change_default_for_stage_effort.rb │ ├── 20190323215103_add_start_and_end_dates_to_team_member.rb │ ├── 20190402135917_create_flow_impacts.rb │ ├── 20190403153943_add_stage_to_block.rb │ ├── 20190403162125_add_team_to_stage.rb │ ├── 20190423164537_add_max_work_in_progree_to_project.rb │ ├── 20190430205947_create_flow_consolidations.rb │ ├── 20190430215107_create_project_consolidations.rb │ ├── 20190501044600_drop_project_weekly_costs.rb │ ├── 20190507183550_change_column_null_team_in_stage.rb │ ├── 20190507222549_create_slack_configurations.rb │ ├── 20190517141230_remove_not_null_for_team_in_stage.rb │ ├── 20190525161036_remove_useless_fields_in_team_and_demand.rb │ ├── 20190527172016_create_demand_comments.rb │ ├── 20190527200450_add_reason_to_block.rb │ ├── 20190531184111_drop_table_flow_consolidations.rb │ ├── 20190531191855_add_field_odds_to_deadline_to_project_consolidations.rb │ ├── 20190531215933_remove_not_null_constraints_from_project_consolidation.rb │ ├── 20190603153315_add_habtm_to_stage_teams.rb │ ├── 20190606144211_change_assignees_count_to_assignees_full_info.rb │ ├── 20190606204533_add_jira_account_user_email_to_team_member.rb │ ├── 20190607143157_add_habtm_to_customers_projects.rb │ ├── 20190611195749_add_info_type_field_to_slack_configurations.rb │ ├── 20190612195656_add_new_schedule_fields_to_slack_config.rb │ ├── 20190613135818_remove_team_from_product.rb │ ├── 20190613192708_change_password_field_name_in_jira_account.rb │ ├── 20190614134919_add_habtm_to_products_projects.rb │ ├── 20190621150621_add_informations_on_little_law_to_project_consolidations.rb │ ├── 20190621191628_add_time_in_stage_to_stage_project_configs.rb │ ├── 20190624141355_add_active_field_to_slack_configurations.rb │ ├── 20190701193809_create_portfolio_units.rb │ ├── 20190701194645_create_jira_portfolio_unit_configs.rb │ ├── 20190704193534_create_jira_product_configs.rb │ ├── 20190705190605_add_product_to_demand.rb │ ├── 20190708211541_add_team_member_to_comments.rb │ ├── 20190709144816_add_team_to_demand.rb │ ├── 20190711211958_add_jira_account_id_to_team_member.rb │ ├── 20190716135342_change_jira_project_config_unique_index.rb │ ├── 20190719194438_add_computed_fields_to_optimize_demand_cost.rb │ ├── 20190723195649_add_api_token_to_company.rb │ ├── 20190730122201_add_helper_fields_to_project_consolidations.rb │ ├── 20190805181747_change_blocker_string_to_team_member.rb │ ├── 20190806135316_create_memberships.rb │ ├── 20190807202613_remove_demand_block_id.rb │ ├── 20190812154723_create_item_assignments.rb │ ├── 20190815151526_remove_active_field_from_team_member.rb │ ├── 20190816185103_move_hours_per_month_from_team_member_to_membership.rb │ ├── 20190821145655_create_risk_reviews.rb │ ├── 20190830144220_add_score_field_to_demands.rb │ ├── 20190905151751_add_risk_review_to_flow_impact.rb │ ├── 20190905215441_add_discard_to_demands_children.rb │ ├── 20190906135154_create_team_resources.rb │ ├── 20190917120310_create_service_delivery_reviews.rb │ ├── 20191002140915_remove_artifact_type_from_demand.rb │ ├── 20191015185615_rename_demand_field_in_jira_custom_field_mapping.rb │ ├── 20191021222025_add_new_stats_fields_to_project_consolidation.rb │ ├── 20191024212617_add_user_id_to_team_member.rb │ ├── 20191025150906_create_project_broken_wip_logs.rb │ ├── 20191028155108_add_blocked_working_time_to_demand_blocks.rb │ ├── 20191223134739_remove_last_company_visited_from_user.rb │ ├── 20200114153736_add_opened_bugs_ids_to_service_delivery_review.rb │ ├── 20200114190057_remove_fields_from_flow_impact.rb │ ├── 20200130181814_add_role_to_user_and_company.rb │ ├── 20200328160133_change_default_value_in_stage_project_configs.rb │ ├── 20200330185149_add_unique_constraint_to_demand_transitions.rb │ ├── 20200406175435_create_risk_review_action_items.rb │ ├── 20200423204628_devise_create_devise_customers.rb │ ├── 20200423211631_create_user_invites.rb │ ├── 20200430140032_add_customer_to_demand.rb │ ├── 20200504193716_create_contracts.rb │ ├── 20200507203439_create_score_matrices.rb │ ├── 20200511192312_add_weight_to_score_matrix_questions.rb │ ├── 20200520142236_change_business_score_in_demand_default.rb │ ├── 20200528154520_add_demand_labels_to_demand.rb │ ├── 20200601145121_change_wip_limit_in_projects_to_decimal.rb │ ├── 20200615173415_add_item_assignment_effort.rb │ ├── 20200627151758_add_hours_per_demand_to_contract.rb │ ├── 20200703124334_add_pull_interval_to_item_assignment.rb │ ├── 20200707184608_create_contract_consolidations.rb │ ├── 20200711165002_remove_product_monte_carlo_from_project_consolidation.rb │ ├── 20200714214845_add_contract_id_to_demand.rb │ ├── 20200716155407_add_monte_carlo_info_to_contract_consolidation.rb │ ├── 20200716215041_create_contract_estimation_change_histories.rb │ ├── 20200717214156_create_demand_transition_notifications.rb │ ├── 20200721155315_create_item_assignment_notifications.rb │ ├── 20200807131518_create_demand_block_notifications.rb │ ├── 20200812153534_add_stages_to_notify_to_slack_configuration.rb │ ├── 20200813131313_create_replenishing_consolidations.rb │ ├── 20200831153123_add_slack_user_info_to_user.rb │ ├── 20200928150830_create_jira_api_errors.rb │ ├── 20200929125717_create_operations_dashboards.rb │ ├── 20201019125426_add_avg_blocked_time_to_risk_review.rb │ ├── 20201020185804_add_manager_dashboard_fields_to_project_consolidation.rb │ ├── 20201111160327_add_hours_per_demand_to_project_consolidation.rb │ ├── 20201209134542_add_hours_scope_cache_to_project_consolidation.rb │ ├── 20201214235753_add_sessions_table.rb │ ├── 20201215181752_create_class_of_service_change_histories.rb │ ├── 20210105172949_create_consolidations_customer_consolidations.rb │ ├── 20210107143637_create_team_consolidations.rb │ ├── 20210418214342_add_throughput_hours_in_month_to_project_consolidation.rb │ ├── 20210430222819_remove_demand_data_processment.rb │ ├── 20210513135325_change_from_stage_to_transition_in_slack_notification.rb │ ├── 20210518140127_add_role_effort_fields_to_consolidations.rb │ ├── 20210519163200_create_demand_efforts.rb │ ├── 20210913214858_add_lock_to_tables.rb │ ├── 20210920220915_change_unique_in_demand_effort.rb │ ├── 20210927183909_add_raw_effort_fields_to_demand_effort.rb │ ├── 20210927200741_add_lock_to_demand_blocks.rb │ ├── 20211011222247_add_lock_to_demand_effort.rb │ ├── 20211110122935_rename_flow_impact_to_flow_event.rb │ ├── 20220113132547_create_azure_accounts.rb │ ├── 20220113160252_create_azure_product_configs.rb │ ├── 20220113202204_remove_customer_in_product_not_null.rb │ ├── 20220113205250_create_azure_teams.rb │ ├── 20220113205638_create_azure_projects.rb │ ├── 20220114200925_create_azure_custom_fields.rb │ ├── 20220115003017_remove_not_null_project_from_demand.rb │ ├── 20220120130408_add_query_field_to_azure_account.rb │ ├── 20220125153405_create_tasks.rb │ ├── 20220127194418_add_tasks_fields_to_project_consolidations.rb │ ├── 20220128154551_create_initiatives.rb │ ├── 20220128210845_create_initiative_consolidations.rb │ ├── 20220131144645_add_hours_per_month_to_team_member.rb │ ├── 20220202200413_add_discard_to_tasks.rb │ ├── 20220214141346_remove_old_encrypt_field_from_jira_account.rb │ ├── 20220221210259_add_leadtime_percentil_ranking_to_demands.rb │ ├── 20220311184239_add_country_to_users.rb │ ├── 20220401124201_add_active_and_type_to_company.rb │ ├── 20220408194012_add_stage_id_to_stages.rb │ ├── 20220503152313_add_type_and_auto_relation_to_stages.rb │ ├── 20220503213916_add_transition_time_to_demand_transitions.rb │ ├── 20220509115356_create_project_additional_hours.rb │ ├── 20220512123859_add_additional_hours_to_project_consolidation.rb │ ├── 20220602123818_add_room_webhook_as_unique_on_slack.rb │ ├── 20220622174041_change_event_start_date_to_date.rb │ ├── 20220705145931_create_work_item_types.rb │ ├── 20220711193708_add_target_quarter_to_initiatives.rb │ ├── 20220714235702_add_external_id_to_portfolio_units.rb │ ├── 20220718205253_add_unique_index_to_portfolio_unit.rb │ ├── 20220718213803_remove_wrong_index_from_portfolio_units.rb │ ├── 20220804162133_add_order_to_azure_custom_field.rb │ ├── 20220914141949_add_customer_slack_configuration.rb │ ├── 20221130114226_create_service_delivery_review_action_items.rb │ ├── 20221205155616_add_slug_to_product.rb │ ├── 20230131205424_remove_effort_blocked_from_demand_efforts.rb │ ├── 20230518190043_create_membership_available_hours_histories.rb │ ├── 20230919172827_add_effort_percentage_to_membership.rb │ ├── 20230920134031_add_membership_effort_percentage_to_demand_effort.rb │ ├── 20231205130509_change_membership_hours_history_null.rb │ ├── 20240305001433_add_consumed_hours_to_contract.rb │ ├── 20240320000000_create_company_working_hours_configs.rb │ ├── 20241112185524_add_unique_constraint_to_item_assignment.rb │ ├── 20241127142153_remove_azure_models.rb │ ├── 20241127151940_drop_table_task.rb │ ├── 20241127161643_drop_initiatives.rb │ ├── 20241127165114_remove_tasks_from_project_consolidation.rb │ ├── 20241128032149_add_role_to_user.rb │ ├── 20241128032914_create_product_users.rb │ ├── 20241206200836_make.rb │ ├── 20250106193537_create_user_session.rb │ └── 20250605160824_add_default_working_hours_config_to_companies.rb ├── schema.rb ├── seeds.rb └── structure.sql ├── docker-compose.yml ├── entrypoint.sh ├── knapsack_rspec_report.json ├── lib ├── assets │ └── .keep └── tasks │ ├── add_transition_time_values.rake │ ├── annotate_rb.rake │ ├── consolidate_flows.rake │ ├── contracts.rake │ ├── counter_cache.rake │ ├── create_legacy_notifications.rake │ ├── dashboards_cache_generator.rake │ ├── notifications.rake │ ├── plans.rake │ ├── process_jira_integration_errors.rake │ ├── update_item_assignments.rake │ ├── update_jira_projects.rake │ └── update_partial_effort_in_demand.rake ├── log └── .keep ├── package.json ├── public ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── assets │ ├── .sprockets-manifest-6cee98e1b18acdbf425b90dd421ffa35.json │ ├── action_cable-69fddfcddf4fdef9828648f9330d6ce108b93b82b0b8d3affffc59a114853451.js │ ├── action_cable-69fddfcddf4fdef9828648f9330d6ce108b93b82b0b8d3affffc59a114853451.js.gz │ ├── action_cable-f70b4efb6fe56b03e2f975d57d8cf4288e33628e3a759e579743107f17728260.js │ ├── action_cable-f70b4efb6fe56b03e2f975d57d8cf4288e33628e3a759e579743107f17728260.js.gz │ ├── actioncable-323d156a10054ee2c94ba8a17c20458f542a17234f934ea53d16e0e1899fda5e.js │ ├── actioncable-323d156a10054ee2c94ba8a17c20458f542a17234f934ea53d16e0e1899fda5e.js.gz │ ├── actioncable-5433453f9b6619a9de91aaab2d7fc7ff183e5260c0107cbc9a1aa0c838d9a74e.js │ ├── actioncable-5433453f9b6619a9de91aaab2d7fc7ff183e5260c0107cbc9a1aa0c838d9a74e.js.gz │ ├── actioncable-da745289dc396d1588ddfd149d68bb8e519d9e7059903aa2bb98cfc57be6d66e.js │ ├── actioncable-da745289dc396d1588ddfd149d68bb8e519d9e7059903aa2bb98cfc57be6d66e.js.gz │ ├── actioncable.esm-3d92de0486af7257cac807acf379cea45baf450c201e71e3e84884c0e1b5ee15.js │ ├── actioncable.esm-3d92de0486af7257cac807acf379cea45baf450c201e71e3e84884c0e1b5ee15.js.gz │ ├── actioncable.esm-b66d83871f0a453b10ba8b4c147c2bafa655caaa5d13fa34e9bf361c1c2aedb7.js │ ├── actioncable.esm-b66d83871f0a453b10ba8b4c147c2bafa655caaa5d13fa34e9bf361c1c2aedb7.js.gz │ ├── actioncable.esm-e01089c3ec4fe7817fa9abcad06cab6bdc387f95f0ca6aab4bf7ba7537f70690.js │ ├── actioncable.esm-e01089c3ec4fe7817fa9abcad06cab6bdc387f95f0ca6aab4bf7ba7537f70690.js.gz │ ├── application-1709ce07b21820eae9f869d61c63ba50d7e3e4d667f6d5e914f5d6cabe255c0f.css │ ├── application-1709ce07b21820eae9f869d61c63ba50d7e3e4d667f6d5e914f5d6cabe255c0f.css.gz │ ├── application-314699ba3fb75ffd4a8e44acdab436b45e1027492505f007623940d0d4dd53c9.js │ ├── application-314699ba3fb75ffd4a8e44acdab436b45e1027492505f007623940d0d4dd53c9.js.gz │ ├── application-6bff37a24297d3f487e4825c1d335d96ef2e7b45352d00c919fb06e99d7ab96e.js │ ├── application-6bff37a24297d3f487e4825c1d335d96ef2e7b45352d00c919fb06e99d7ab96e.js.gz │ ├── application-7563a4ddba4008f83b2cd6bc5cea107fb499fdbbb0ec5bbe7463b61a90383ae7.js │ ├── application-7563a4ddba4008f83b2cd6bc5cea107fb499fdbbb0ec5bbe7463b61a90383ae7.js.gz │ ├── application-800aff43eb653348db43ca1864357b3bd3ff13b2ed68f760d59a9152ca94110b.css │ ├── application-800aff43eb653348db43ca1864357b3bd3ff13b2ed68f760d59a9152ca94110b.css.gz │ ├── application-cfa8e233f302f1e324346b82c691968df06f0f7d1d895799912a5e3dbced7731.css │ ├── application-cfa8e233f302f1e324346b82c691968df06f0f7d1d895799912a5e3dbced7731.css.gz │ ├── cable-08f020fd9cb086e7c96e66d75d5d23a4b6a1e9c95976e775918b481773d2003c.js │ ├── cable-08f020fd9cb086e7c96e66d75d5d23a4b6a1e9c95976e775918b481773d2003c.js.gz │ ├── cable-7f3e18d661723e75126a4eb7936ee086c32aed3ac226cd4acc3d775b142802dc.js │ ├── cable-7f3e18d661723e75126a4eb7936ee086c32aed3ac226cd4acc3d775b142802dc.js.gz │ ├── cable-9ce046aba14be1936f849cf4a86454b8e1fecb0b4b4267042cf8de9abb1b2223.js │ ├── cable-9ce046aba14be1936f849cf4a86454b8e1fecb0b4b4267042cf8de9abb1b2223.js.gz │ ├── cd-arrow-db13bcbc88ebac5cf5ed366144ceeac68737c5f07c632b9e39a48ce8eb7e253c.svg │ ├── cd-arrow-db13bcbc88ebac5cf5ed366144ceeac68737c5f07c632b9e39a48ce8eb7e253c.svg.gz │ ├── charts │ │ ├── bar-375a3366a598da2380e2e56688e090b0559fa1eef688de05baf0cbf16f3f1b9c.js │ │ ├── bar-375a3366a598da2380e2e56688e090b0559fa1eef688de05baf0cbf16f3f1b9c.js.gz │ │ ├── bar-bab1e409d3888327b58ba670a86cc4f50ae770da2cde2044e366add6c0c8a3dd.js │ │ ├── bar-bab1e409d3888327b58ba670a86cc4f50ae770da2cde2044e366add6c0c8a3dd.js.gz │ │ ├── bar-dd170b2db5495a8a3b9c8ac3e24e84a9afeec901a499561a0bdcdecf4e308109.js │ │ ├── bar-dd170b2db5495a8a3b9c8ac3e24e84a9afeec901a499561a0bdcdecf4e308109.js.gz │ │ ├── burnup-58654c0cc5a09d9fb5e25dc3f388174871cef6e69e5b6ab11c32d4dfb5fcc593.js │ │ ├── burnup-58654c0cc5a09d9fb5e25dc3f388174871cef6e69e5b6ab11c32d4dfb5fcc593.js.gz │ │ ├── burnup-72b68df9ae09c4c3be7b580a6b48e9f303218f78816f7c12611d951d6417e1f4.js │ │ ├── burnup-72b68df9ae09c4c3be7b580a6b48e9f303218f78816f7c12611d951d6417e1f4.js.gz │ │ ├── burnup-7661d878a51dc5a8f6feb3bd6d60f9098344bd80e955eaa36c98c90558c94343.js │ │ ├── burnup-7661d878a51dc5a8f6feb3bd6d60f9098344bd80e955eaa36c98c90558c94343.js.gz │ │ ├── chart-with-two-thresholds-b8b7e985a5b65f6814a2938c27cb08a322098654e34243d2457d251406f533f2.js │ │ ├── chart-with-two-thresholds-b8b7e985a5b65f6814a2938c27cb08a322098654e34243d2457d251406f533f2.js.gz │ │ ├── chart-with-two-thresholds-c044d74f45d48594ab51ea756e437889b5e5fd6aea426d1232380424c9a0e3a7.js │ │ ├── chart-with-two-thresholds-c044d74f45d48594ab51ea756e437889b5e5fd6aea426d1232380424c9a0e3a7.js.gz │ │ ├── column-4d1dd691e5dfffd6641089569b3f75e255ae3e5994b7120d131ed44e6ab564da.js │ │ ├── column-4d1dd691e5dfffd6641089569b3f75e255ae3e5994b7120d131ed44e6ab564da.js.gz │ │ ├── column-9c1bb1b72f20bd643a8cc81c0c38ea3f40a4e9879f0fa60b7939e1631bec5a91.js │ │ ├── column-9c1bb1b72f20bd643a8cc81c0c38ea3f40a4e9879f0fa60b7939e1631bec5a91.js.gz │ │ ├── column-c29dd70d9cb7b70fa5930e2d8204ab9f12b0b3ffa0e3a6ea6f39f159c50827bb.js │ │ ├── column-c29dd70d9cb7b70fa5930e2d8204ab9f12b0b3ffa0e3a6ea6f39f159c50827bb.js.gz │ │ ├── column-line-03a103c42fa363d40be31ded4ff796f96bcb988f54bd8d2cb83b6fcd9ba74b29.js │ │ ├── column-line-03a103c42fa363d40be31ded4ff796f96bcb988f54bd8d2cb83b6fcd9ba74b29.js.gz │ │ ├── column-line-24936ee6b45155fcc052fdd9028caa7b459c316b12c8c0d5167a280b710bef3e.js │ │ ├── column-line-24936ee6b45155fcc052fdd9028caa7b459c316b12c8c0d5167a280b710bef3e.js.gz │ │ ├── column-line-d9484e320d2ee7b4d6e8c0f33a3a9b7ef309d0f45ad164a5a9496f46051b4b59.js │ │ ├── column-line-d9484e320d2ee7b4d6e8c0f33a3a9b7ef309d0f45ad164a5a9496f46051b4b59.js.gz │ │ ├── donut-0dc3d2a57ebd2cf26ce8a96858f195cd2b37c081568cb394f48cd1465de81f15.js │ │ ├── donut-0dc3d2a57ebd2cf26ce8a96858f195cd2b37c081568cb394f48cd1465de81f15.js.gz │ │ ├── donut-eca55ca9d62d5492e44df88a9c54bcf4f6e3a77dba151345a2f78a03025c36d9.js │ │ ├── donut-eca55ca9d62d5492e44df88a9c54bcf4f6e3a77dba151345a2f78a03025c36d9.js.gz │ │ ├── donut-fae9913f67ec7f351f0a94daa7557c55bf3b66481ffad31d1116f0c2e13bc73f.js │ │ ├── donut-fae9913f67ec7f351f0a94daa7557c55bf3b66481ffad31d1116f0c2e13bc73f.js.gz │ │ ├── gantt-ca2b508b58534e8a14c28d44fc593c74e145d41f9442217dfb52ce599edf6091.js │ │ ├── gantt-ca2b508b58534e8a14c28d44fc593c74e145d41f9442217dfb52ce599edf6091.js.gz │ │ ├── gauge-0e01c786b0b68f1bb9cc6477ef6117a7a3790df7cbce800ca27b6844df8d5a1c.js │ │ ├── gauge-0e01c786b0b68f1bb9cc6477ef6117a7a3790df7cbce800ca27b6844df8d5a1c.js.gz │ │ ├── gauge-61d1f09f532d05c93b92a47c5e9675b03d87f35a2fc9d0fb3676ae755ead2b89.js │ │ ├── gauge-61d1f09f532d05c93b92a47c5e9675b03d87f35a2fc9d0fb3676ae755ead2b89.js.gz │ │ ├── gauge-f7db7dcb61ea48002cc1b0fc6e3217d0d84cb9ddd2a2c86bc973e9ae1f4f16f1.js │ │ ├── gauge-f7db7dcb61ea48002cc1b0fc6e3217d0d84cb9ddd2a2c86bc973e9ae1f4f16f1.js.gz │ │ ├── histogram-b5e3a0469708d7cac961f31fbf9bd015adb9ba75d136b9e50ff49b62e313c9e4.js │ │ ├── histogram-b5e3a0469708d7cac961f31fbf9bd015adb9ba75d136b9e50ff49b62e313c9e4.js.gz │ │ ├── histogram-e4cf429519c0f59adff2351a54e5d87aa38ac9c8116922fa327a1d6dc3637e21.js │ │ ├── histogram-e4cf429519c0f59adff2351a54e5d87aa38ac9c8116922fa327a1d6dc3637e21.js.gz │ │ ├── line-11a7202894f93d8715187938605f45285e10345d2e81636626163414b83fd1b8.js │ │ ├── line-11a7202894f93d8715187938605f45285e10345d2e81636626163414b83fd1b8.js.gz │ │ ├── line-17f3c1d64e015a7b295d190869f21df22c47a793b0049dbb7588c8ae2c7fbe01.js │ │ ├── line-17f3c1d64e015a7b295d190869f21df22c47a793b0049dbb7588c8ae2c7fbe01.js.gz │ │ ├── line-1dfe1d0232a64485d0353e30d79b2641bdab6cf9ed473426dd5d070f48732eed.js │ │ ├── line-1dfe1d0232a64485d0353e30d79b2641bdab6cf9ed473426dd5d070f48732eed.js.gz │ │ ├── scatter-0d46fdf0a4b57e8a3f50f74f34b9aad93ff1fcc78f2410476b91d3c0b898c241.js │ │ ├── scatter-0d46fdf0a4b57e8a3f50f74f34b9aad93ff1fcc78f2410476b91d3c0b898c241.js.gz │ │ ├── scatter-449ed556266185fd8ecd2adeb41302be717fb1901dba8e4ad03fa8acd4de1055.js │ │ ├── scatter-449ed556266185fd8ecd2adeb41302be717fb1901dba8e4ad03fa8acd4de1055.js.gz │ │ ├── scatter-f3e980bc5c18b59d754f93dba817cc237ae19a2a2f8dfa6cd1ebb3940c7aeafc.js │ │ ├── scatter-f3e980bc5c18b59d754f93dba817cc237ae19a2a2f8dfa6cd1ebb3940c7aeafc.js.gz │ │ ├── speedometer-0b0311f528bcec07cbdab4c6dbbc9523c3ee5601a2c36084a16eb8bcd777e03d.js │ │ ├── speedometer-0b0311f528bcec07cbdab4c6dbbc9523c3ee5601a2c36084a16eb8bcd777e03d.js.gz │ │ ├── speedometer-1e11ce92cd105109008281003f8fd944a45ef783bb960659482bf1476bcd83f3.js │ │ ├── speedometer-1e11ce92cd105109008281003f8fd944a45ef783bb960659482bf1476bcd83f3.js.gz │ │ ├── speedometer-f6d0f76c68e0cf718a71de48fecfc7cf371f759877a51177fd37b2c5bc2fcdff.js │ │ ├── speedometer-f6d0f76c68e0cf718a71de48fecfc7cf371f759877a51177fd37b2c5bc2fcdff.js.gz │ │ ├── stacked_area-4194e56d42ffbe054891304667e2e87daee478ef83e6cd3179d1512d2e34b013.js │ │ ├── stacked_area-4194e56d42ffbe054891304667e2e87daee478ef83e6cd3179d1512d2e34b013.js.gz │ │ ├── stacked_area-87106022c13317327cb629f8076b844e481b0d50abc50df87b931fdc5354e73a.js │ │ ├── stacked_area-87106022c13317327cb629f8076b844e481b0d50abc50df87b931fdc5354e73a.js.gz │ │ ├── stacked_area-e370751ab8d82e639ae12311db6a5b19b20f7bca97a0fa052b769fc5df9bb186.js │ │ ├── stacked_area-e370751ab8d82e639ae12311db6a5b19b20f7bca97a0fa052b769fc5df9bb186.js.gz │ │ ├── word_cloud-bbc0111358cbe0eaae9d32dc98f8d18fee6150779952f505602f00f2b8b46caa.js │ │ └── word_cloud-bbc0111358cbe0eaae9d32dc98f8d18fee6150779952f505602f00f2b8b46caa.js.gz │ ├── cloudinary │ │ ├── canvas-to-blob.min-830ca6070c6da539b3fd538fc78c09e6ed99f7d867b4036b891d7698fb74118f.js │ │ ├── canvas-to-blob.min-830ca6070c6da539b3fd538fc78c09e6ed99f7d867b4036b891d7698fb74118f.js.gz │ │ ├── index-f6a581aaf3b77143b48fc759bc9c46860283bea54ac44579a6b16c3703d3bee0.js │ │ ├── index-f6a581aaf3b77143b48fc759bc9c46860283bea54ac44579a6b16c3703d3bee0.js.gz │ │ ├── jquery.cloudinary-9bf332690a1cccc5c6fef1d4c0585295c4d46534f175226a7f25b267d3ae0fe9.js │ │ ├── jquery.cloudinary-9bf332690a1cccc5c6fef1d4c0585295c4d46534f175226a7f25b267d3ae0fe9.js.gz │ │ ├── jquery.fileupload-9f38b05221cba93800dc7d6c850d7ab347798a7a521582bf9d564b03ac787a7f.js │ │ ├── jquery.fileupload-9f38b05221cba93800dc7d6c850d7ab347798a7a521582bf9d564b03ac787a7f.js.gz │ │ ├── jquery.fileupload-image-d8e3633d3b875bed59c0f12e14a64de1497198fe1b62be2b5dad058521bd60d5.js │ │ ├── jquery.fileupload-image-d8e3633d3b875bed59c0f12e14a64de1497198fe1b62be2b5dad058521bd60d5.js.gz │ │ ├── jquery.fileupload-process-cf642b46b2adcb99ac069c6cf2a6ebcc776ca78c8ba4692b0596179f9ee6dbc9.js │ │ ├── jquery.fileupload-process-cf642b46b2adcb99ac069c6cf2a6ebcc776ca78c8ba4692b0596179f9ee6dbc9.js.gz │ │ ├── jquery.fileupload-validate-a5d24d64dff49d59e9b0c7c6e62dbbbfcfb0341cce5feae9b562edc8d02b910c.js │ │ ├── jquery.fileupload-validate-a5d24d64dff49d59e9b0c7c6e62dbbbfcfb0341cce5feae9b562edc8d02b910c.js.gz │ │ ├── jquery.iframe-transport-2b5b2e89c7be665056800ad24fc0bebb8a139362123ea0f4c2403425f305d811.js │ │ ├── jquery.iframe-transport-2b5b2e89c7be665056800ad24fc0bebb8a139362123ea0f4c2403425f305d811.js.gz │ │ ├── jquery.ui.widget-92c37a41e67e528eecf100716907331b4b9aa4f546bf75ef2e0529c8c03a562d.js │ │ ├── jquery.ui.widget-92c37a41e67e528eecf100716907331b4b9aa4f546bf75ef2e0529c8c03a562d.js.gz │ │ ├── load-image.all.min-7572500fb826f6bbb72c9b1d7e91d37e900299fbc7d5c9c2a300d4a3a0d746ab.js │ │ ├── load-image.all.min-7572500fb826f6bbb72c9b1d7e91d37e900299fbc7d5c9c2a300d4a3a0d746ab.js.gz │ │ ├── processing-f32a22801e6576135bef2cc464fed50fc376a8b569e72ea9ec5db5299791be12.js │ │ └── processing-f32a22801e6576135bef2cc464fed50fc376a8b569e72ea9ec5db5299791be12.js.gz │ ├── coffee-script-1fc277cf20f802ad03dadce9de63d733cb9c789574d0d88a954987667d851cc4.js │ ├── coffee-script-1fc277cf20f802ad03dadce9de63d733cb9c789574d0d88a954987667d851cc4.js.gz │ ├── companies │ │ ├── column_active_projects_count_chart-351e2f30c45ac84d562201b57d1e9a0346fba0eeb9654b3db13fef586933d85f.js │ │ ├── column_active_projects_count_chart-351e2f30c45ac84d562201b57d1e9a0346fba0eeb9654b3db13fef586933d85f.js.gz │ │ ├── column_active_projects_count_chart-a4302798dd01b83aa36b64f26c70290319609543ecd4323a060f6a722d8c07cb.js │ │ ├── column_active_projects_count_chart-a4302798dd01b83aa36b64f26c70290319609543ecd4323a060f6a722d8c07cb.js.gz │ │ ├── company_navigation_behaviour-184fb4fe84c958bbcbf9dbc10c084b6ad76688fe97fb5d76675611cfcf9b21ac.js │ │ ├── company_navigation_behaviour-184fb4fe84c958bbcbf9dbc10c084b6ad76688fe97fb5d76675611cfcf9b21ac.js.gz │ │ ├── company_navigation_behaviour-1d0da9e78519b14bb1ee20f6c2b985003c0a53d4faaf0194bedb5fea35fb1262.js │ │ ├── company_navigation_behaviour-1d0da9e78519b14bb1ee20f6c2b985003c0a53d4faaf0194bedb5fea35fb1262.js.gz │ │ ├── company_navigation_behaviour-4e1280c5786beb019f6f350b8202d886cae27b276c165bf0e9554daf81501ecf.js │ │ ├── company_navigation_behaviour-4e1280c5786beb019f6f350b8202d886cae27b276c165bf0e9554daf81501ecf.js.gz │ │ ├── flow_pressure_chart-41e3b5c3341b1b1996037390e35146cfe0a4510361908e794e63c7a7d00ae7d7.js │ │ ├── flow_pressure_chart-41e3b5c3341b1b1996037390e35146cfe0a4510361908e794e63c7a7d00ae7d7.js.gz │ │ ├── flow_pressure_chart-8c6d804be2698f024fe351f52a8dc622e4c2f832a836c681e3e7cedafdd7f2c5.js │ │ ├── flow_pressure_chart-8c6d804be2698f024fe351f52a8dc622e4c2f832a836c681e3e7cedafdd7f2c5.js.gz │ │ ├── hours_gauge_chart-58240ffebb3834ce80879b71bbf7583120cd71cfe658092455a4337001e624ea.js │ │ ├── hours_gauge_chart-58240ffebb3834ce80879b71bbf7583120cd71cfe658092455a4337001e624ea.js.gz │ │ ├── hours_per_month_chart-5408437508c6ea798fff8277d633cec6887ea09d11f4e26dc823319b47d4deb4.js │ │ ├── hours_per_month_chart-5408437508c6ea798fff8277d633cec6887ea09d11f4e26dc823319b47d4deb4.js.gz │ │ ├── hours_per_month_chart-b191a4c08de80aa9d7f0264b57ca18b22e85c78f273474eb90b71511b2791189.js │ │ ├── hours_per_month_chart-b191a4c08de80aa9d7f0264b57ca18b22e85c78f273474eb90b71511b2791189.js.gz │ │ ├── money_chart-5aee44670f647e3953b4ff524b2325b8d77ada9e849cbafd4e609e974a2ec754.js │ │ ├── money_chart-5aee44670f647e3953b4ff524b2325b8d77ada9e849cbafd4e609e974a2ec754.js.gz │ │ ├── money_chart-6e3e8f17f828023d583c57ec99dc4266543793aaa65d4229c10f4a12ff428cfe.js │ │ ├── money_chart-6e3e8f17f828023d583c57ec99dc4266543793aaa65d4229c10f4a12ff428cfe.js.gz │ │ ├── show-29188e9b1f63d591a907c8b760a320c58c32e20bc7fb8f56d3c9fc8874eb83cb.js │ │ ├── show-29188e9b1f63d591a907c8b760a320c58c32e20bc7fb8f56d3c9fc8874eb83cb.js.gz │ │ ├── show-bed291d1a10983457dde2e52465b3c99b5321f7d5cc6cd4ebd33c2007664b4af.js │ │ ├── show-bed291d1a10983457dde2e52465b3c99b5321f7d5cc6cd4ebd33c2007664b4af.js.gz │ │ ├── show-e6c51ca6f340fcc430261f5e50d545102aee888814395ddb87d38aa11fa8588f.js │ │ ├── show-e6c51ca6f340fcc430261f5e50d545102aee888814395ddb87d38aa11fa8588f.js.gz │ │ ├── strategic_charts-410a0c88bf6587a165217644177faabce709379c98e8d97ace0a7d4a1a0f65a8.js │ │ ├── strategic_charts-410a0c88bf6587a165217644177faabce709379c98e8d97ace0a7d4a1a0f65a8.js.gz │ │ ├── strategic_charts-a02af9161692fab22d7642a22c34db5d939c2f43bef1e181df330f1c95a9ed02.js │ │ ├── strategic_charts-a02af9161692fab22d7642a22c34db5d939c2f43bef1e181df330f1c95a9ed02.js.gz │ │ ├── strategic_charts-e11450aa0521747f20b065ffa94c81a40de6fefbb51545cc4b39db757fb75176.js │ │ └── strategic_charts-e11450aa0521747f20b065ffa94c81a40de6fefbb51545cc4b39db757fb75176.js.gz │ ├── components │ │ ├── components-0684d361aa86ec030d4b975ba186d45bfd8732e54775e3be2934508d6db309be.js │ │ ├── components-0684d361aa86ec030d4b975ba186d45bfd8732e54775e3be2934508d6db309be.js.gz │ │ ├── components-3d0d5b62e52f8807d1ba72b6b3126a2a1c3853c1e219fee84aa58d5e44a4aa32.js │ │ ├── components-3d0d5b62e52f8807d1ba72b6b3126a2a1c3853c1e219fee84aa58d5e44a4aa32.js.gz │ │ ├── components-5c07286b178a61a5413dce0f9b8af18198f7777f7af84aab4e6de40fedb4a969.js │ │ ├── components-5c07286b178a61a5413dce0f9b8af18198f7777f7af84aab4e6de40fedb4a969.js.gz │ │ ├── dates-4baa9334d0ee886a465580cf51b4d5eca901a2c6606afc7963104b4b5f47d11b.js │ │ └── dates-4baa9334d0ee886a465580cf51b4d5eca901a2c6606afc7963104b4b5f47d11b.js.gz │ ├── contracts │ │ ├── contract-charts-4707cb0801e33517a9231ca353c6c1905d703fce6dcc3db70ed3a7e1f594a398.js │ │ ├── contract-charts-4707cb0801e33517a9231ca353c6c1905d703fce6dcc3db70ed3a7e1f594a398.js.gz │ │ ├── contract-charts-61782b858af6229fcb0b49f3c79d0b205f7594b485cd68928d06c853b72f24ec.js │ │ ├── contract-charts-61782b858af6229fcb0b49f3c79d0b205f7594b485cd68928d06c853b72f24ec.js.gz │ │ ├── contract-charts-a1aca1a9b1e5be6cbc44425e0f3e77f09fd840022254b5fb87fe858410c4ba83.js │ │ ├── contract-charts-a1aca1a9b1e5be6cbc44425e0f3e77f09fd840022254b5fb87fe858410c4ba83.js.gz │ │ ├── show-0981e9228ca46fdbdda6382005b9524300e3408586831f614e78399018944eeb.js │ │ ├── show-0981e9228ca46fdbdda6382005b9524300e3408586831f614e78399018944eeb.js.gz │ │ ├── show-35e8bde9ca16e26366897dd729d6c0d74214f6b95b83277c67898e69e533305d.js │ │ ├── show-35e8bde9ca16e26366897dd729d6c0d74214f6b95b83277c67898e69e533305d.js.gz │ │ ├── show-797357e0c8b7ef87e0093c681c46c931b4cbcf43be20dab342c4876cb6edb30c.js │ │ └── show-797357e0c8b7ef87e0093c681c46c931b4cbcf43be20dab342c4876cb6edb30c.js.gz │ ├── customers │ │ ├── customer-charts-cadeb9a7775b009d96831df9d5bafd4e6ebfb1c84bdc1a1f417db437bd566809.js │ │ ├── customer-charts-cadeb9a7775b009d96831df9d5bafd4e6ebfb1c84bdc1a1f417db437bd566809.js.gz │ │ ├── show-615178ba13e9d12be45f98917f34c8c3f384d77cb5f560191382e6e04b25e9b8.js │ │ ├── show-615178ba13e9d12be45f98917f34c8c3f384d77cb5f560191382e6e04b25e9b8.js.gz │ │ ├── show-9ca5124b4fb562690ba5cf7a63b70ee550229950d2090c85efd8d28cd9e2b0f6.js │ │ ├── show-9ca5124b4fb562690ba5cf7a63b70ee550229950d2090c85efd8d28cd9e2b0f6.js.gz │ │ ├── show-ff14c52d51cd30a5bc83be51484fd453b1fbd597adf46b733c30b06606c98772.js │ │ └── show-ff14c52d51cd30a5bc83be51484fd453b1fbd597adf46b733c30b06606c98772.js.gz │ ├── demand_blocks │ │ ├── form_modal-0b03be8cc73f62f0195f3be9bfbe0f8be741b8df051db3993113d95ba2cda86f.js │ │ ├── form_modal-0b03be8cc73f62f0195f3be9bfbe0f8be741b8df051db3993113d95ba2cda86f.js.gz │ │ ├── form_modal-b7ac50010e43bde4b992bad9e7d6f22251fd71c4b9527a7a55e0f5ca5f527f04.js │ │ ├── form_modal-b7ac50010e43bde4b992bad9e7d6f22251fd71c4b9527a7a55e0f5ca5f527f04.js.gz │ │ ├── form_modal-c9655e9cfb85c8c09b127dd602e26734bb4d81cf75086ebb173434250ec502e9.js │ │ ├── form_modal-c9655e9cfb85c8c09b127dd602e26734bb4d81cf75086ebb173434250ec502e9.js.gz │ │ ├── form_modal-f67662f438f5638c161dc7d227fb609f418508c473da88ea0d69d00fa9cb57a5.js │ │ ├── form_modal-f67662f438f5638c161dc7d227fb609f418508c473da88ea0d69d00fa9cb57a5.js.gz │ │ ├── index-27ea2e17aa64611dccb531e82a768d1f09b9cd660694ac2df6822ea5724d25f4.js │ │ ├── index-27ea2e17aa64611dccb531e82a768d1f09b9cd660694ac2df6822ea5724d25f4.js.gz │ │ ├── list_modal-70b41f98195a319f00349db416ed9f2c554b55341b559c23c15221c174c2535d.js │ │ ├── list_modal-70b41f98195a319f00349db416ed9f2c554b55341b559c23c15221c174c2535d.js.gz │ │ ├── list_modal-af6bbdf5442992faa1cf44806586a76ccc63d27de4a1e08d087477007a324677.js │ │ ├── list_modal-af6bbdf5442992faa1cf44806586a76ccc63d27de4a1e08d087477007a324677.js.gz │ │ ├── list_modal-e3123f56cf84c9c6da8e43a3a45db70d9d0763008a5b4ae53b5065c5303f046e.js │ │ └── list_modal-e3123f56cf84c9c6da8e43a3a45db70d9d0763008a5b4ae53b5065c5303f046e.js.gz │ ├── demands │ │ ├── column_throughput_week-9eae8c94c666be4d59ac99d196b2cd14b3fb730b29ff30dccb133d8d0e615bc6.js │ │ ├── column_throughput_week-9eae8c94c666be4d59ac99d196b2cd14b3fb730b29ff30dccb133d8d0e615bc6.js.gz │ │ ├── column_throughput_week-c2295ce3d3bfa3e4720c403b18ce2bfcf60d1c09a7a272477f4ef5f111a1e1de.js │ │ ├── column_throughput_week-c2295ce3d3bfa3e4720c403b18ce2bfcf60d1c09a7a272477f4ef5f111a1e1de.js.gz │ │ ├── column_throughput_week-e30dba54e9d01254149b3e8d2903c1d562f3be20f8630f82a0a0144388c1bb90.js │ │ ├── column_throughput_week-e30dba54e9d01254149b3e8d2903c1d562f3be20f8630f82a0a0144388c1bb90.js.gz │ │ ├── demands_charts-b3f3fbf0d69955ed3ef5cd1117e4a42a2a070d2c44d068e568ec597634cc23aa.js │ │ ├── demands_charts-b3f3fbf0d69955ed3ef5cd1117e4a42a2a070d2c44d068e568ec597634cc23aa.js.gz │ │ ├── demands_charts-e49e785d279bf97f073fda7b9caf42bbaedf9adcb6250d9778af6cfa3269d799.js │ │ ├── demands_charts-e49e785d279bf97f073fda7b9caf42bbaedf9adcb6250d9778af6cfa3269d799.js.gz │ │ ├── demands_charts-ff2b1954b4c1640e6ef41e5999c5aeb77abf89b7d9196849b754a398834f34f8.js │ │ ├── demands_charts-ff2b1954b4c1640e6ef41e5999c5aeb77abf89b7d9196849b754a398834f34f8.js.gz │ │ ├── demands_charts_action-d49006a7ef0fcb676ce241432d6fb2fe6042b06e6dc723572f310f5656794e1e.js │ │ ├── demands_charts_action-d49006a7ef0fcb676ce241432d6fb2fe6042b06e6dc723572f310f5656794e1e.js.gz │ │ ├── demands_list-5a7304fdb7d69e3d9294364ebbe706977e85915e8568d9a5465059e0334d8a30.js │ │ ├── demands_list-5a7304fdb7d69e3d9294364ebbe706977e85915e8568d9a5465059e0334d8a30.js.gz │ │ ├── demands_list-7b9ad4d20095f4d98650c86a3fb30efd1fee504f15a7605d0e040cd02f9177d3.js │ │ ├── demands_list-7b9ad4d20095f4d98650c86a3fb30efd1fee504f15a7605d0e040cd02f9177d3.js.gz │ │ ├── demands_list-7e5017cb2f2c1523514a8b46d93bd252300a846aa37dfce71eec659f338f66f9.js │ │ ├── demands_list-7e5017cb2f2c1523514a8b46d93bd252300a846aa37dfce71eec659f338f66f9.js.gz │ │ ├── filter_binding-088698bc057274d8dbbdd9e0bb549c87d5f361e32bd24d30035b0b398701c546.js │ │ ├── filter_binding-088698bc057274d8dbbdd9e0bb549c87d5f361e32bd24d30035b0b398701c546.js.gz │ │ ├── filter_binding-f845334c9311d23347d38321ace673cc7c348a2c2d9cc8fc3e5293ea15c5b01c.js │ │ ├── filter_binding-f845334c9311d23347d38321ace673cc7c348a2c2d9cc8fc3e5293ea15c5b01c.js.gz │ │ ├── filter_binding-fc0005143d3bb67b179cb28218ea05866d6808b0f69cacf7c1d3e316e5ca6727.js │ │ ├── filter_binding-fc0005143d3bb67b179cb28218ea05866d6808b0f69cacf7c1d3e316e5ca6727.js.gz │ │ ├── form_modal-6753192217eb56b99677bcb95bd5bd0539439ef3636fbd1cd1059ba6d7b84e42.js │ │ ├── form_modal-6753192217eb56b99677bcb95bd5bd0539439ef3636fbd1cd1059ba6d7b84e42.js.gz │ │ ├── form_modal-6e230ca19673250e63a4954267114dae63b4384c2543e3da029fffa91c1793f8.js │ │ ├── form_modal-6e230ca19673250e63a4954267114dae63b4384c2543e3da029fffa91c1793f8.js.gz │ │ ├── form_modal-7d8b9087c937bde69f5d964ff73cfb70ef7fe749a43342345bfed1dd108e21d4.js │ │ ├── form_modal-7d8b9087c937bde69f5d964ff73cfb70ef7fe749a43342345bfed1dd108e21d4.js.gz │ │ ├── index-27dc09dda51a7319f7d6672bd78f2116b281b0a4f63db4f43cea9b5b845f2df1.js │ │ ├── index-27dc09dda51a7319f7d6672bd78f2116b281b0a4f63db4f43cea9b5b845f2df1.js.gz │ │ ├── index-70224ee49639ec6126483c9a6e397fd5e08b10b7a6a3d480018b5ae4f5c2f7c9.js │ │ ├── index-70224ee49639ec6126483c9a6e397fd5e08b10b7a6a3d480018b5ae4f5c2f7c9.js.gz │ │ ├── show-7fa76750d38606486cd6b6a33740230f22201f0c2c13eb3e381e4a929afeb9b0.js │ │ ├── show-7fa76750d38606486cd6b6a33740230f22201f0c2c13eb3e381e4a929afeb9b0.js.gz │ │ ├── show-9a6916c9fdcf0b00c299fbe1bfef1113ad23ecf52274de8ab4bae8605eab89a7.js │ │ ├── show-9a6916c9fdcf0b00c299fbe1bfef1113ad23ecf52274de8ab4bae8605eab89a7.js.gz │ │ ├── show-c0df4eb90f916d1935bbbd0666910c0739668865b5590a8fb4bf2624ed874686.js │ │ └── show-c0df4eb90f916d1935bbbd0666910c0739668865b5590a8fb4bf2624ed874686.js.gz │ ├── devise_customers │ │ ├── home-078be473e1e41fa1b2927d9905f552b8ee44c30d843929f1e07922cbbcb05ed8.js │ │ ├── home-078be473e1e41fa1b2927d9905f552b8ee44c30d843929f1e07922cbbcb05ed8.js.gz │ │ ├── home-99d659716b7123568916c12bae8c799a5718b235c420ebf227acb93b28f2cf9d.js │ │ ├── home-99d659716b7123568916c12bae8c799a5718b235c420ebf227acb93b28f2cf9d.js.gz │ │ ├── home-adb62e0ddb5208a92ef9767e40610ac4618c9431e52c4efb73cd0f119092db87.js │ │ └── home-adb62e0ddb5208a92ef9767e40610ac4618c9431e52c4efb73cd0f119092db87.js.gz │ ├── favicon-4d08e74b66cc690c19f8693cc34876a74cceba81bc3f388a21659fafb968eec9.png │ ├── favicon-70494a647b7051cbc362ee3e9ff3f047fe7fc96c397ea1b5284d363e584780ab.png │ ├── favicon-c1d52c152beb095c1f50841bd0a01c58786af95b12b9ef2e44954d64123cdace.ico │ ├── favicon-c1d52c152beb095c1f50841bd0a01c58786af95b12b9ef2e44954d64123cdace.ico.gz │ ├── finances │ │ ├── chart_builder-09dc1021d8a6e8101b431d673aa19253879163541058be7d949d3bb24715fd16.js │ │ ├── chart_builder-09dc1021d8a6e8101b431d673aa19253879163541058be7d949d3bb24715fd16.js.gz │ │ ├── chart_builder-51b6cc664370c8746da65f6f00c563cf35af5a2a6128614daa29319cf8018fd4.js │ │ ├── chart_builder-51b6cc664370c8746da65f6f00c563cf35af5a2a6128614daa29319cf8018fd4.js.gz │ │ ├── chart_builder-abf3f286258b69d5a00131d91e20e323c80f6dd5f82cbc300aa97ced0e5070a7.js │ │ ├── chart_builder-abf3f286258b69d5a00131d91e20e323c80f6dd5f82cbc300aa97ced0e5070a7.js.gz │ │ ├── show-89cb8e915111fe02c07aa6cc3da0095339860831a0d4f1aac75fe1c17e8ab29f.js │ │ ├── show-89cb8e915111fe02c07aa6cc3da0095339860831a0d4f1aac75fe1c17e8ab29f.js.gz │ │ ├── show-8b7f9c5e724a60860ae39c10fded10105e4b97baa69aeaad10321c3325514fd4.js │ │ ├── show-8b7f9c5e724a60860ae39c10fded10105e4b97baa69aeaad10321c3325514fd4.js.gz │ │ ├── show-9f1d6fe984854e385211ed45422241841b4b16afdd974fca340030cff308715e.js │ │ └── show-9f1d6fe984854e385211ed45422241841b4b16afdd974fca340030cff308715e.js.gz │ ├── flow_events │ │ ├── edit-aecd62139ca139793321f82c7ac2247deebc28b3c3dff7d386dd902e05e8b4b0.js │ │ ├── edit-aecd62139ca139793321f82c7ac2247deebc28b3c3dff7d386dd902e05e8b4b0.js.gz │ │ ├── new-aecd62139ca139793321f82c7ac2247deebc28b3c3dff7d386dd902e05e8b4b0.js │ │ ├── new-aecd62139ca139793321f82c7ac2247deebc28b3c3dff7d386dd902e05e8b4b0.js.gz │ │ ├── new-dfc3e1cf38430e3de09154078b2bd3f95848f47756c0b67ccc58dd12911fc806.js │ │ └── new-dfc3e1cf38430e3de09154078b2bd3f95848f47756c0b67ccc58dd12911fc806.js.gz │ ├── flow_impacts │ │ ├── form-4a4467751bfd59975184ff4f034eae65555f7a5cffaea78340975b7f247218a2.js │ │ ├── form-4a4467751bfd59975184ff4f034eae65555f7a5cffaea78340975b7f247218a2.js.gz │ │ ├── form-c9a634fadb762ead19641087c2563bbb24968b476bfdfa3c78e66d7002ab4de9.js │ │ ├── form-c9a634fadb762ead19641087c2563bbb24968b476bfdfa3c78e66d7002ab4de9.js.gz │ │ ├── form-ead9a66d0cb6ff3b6f17ce93ec416e132da17a4e668e1eb0928425b7333a53cc.js │ │ ├── form-ead9a66d0cb6ff3b6f17ce93ec416e132da17a4e668e1eb0928425b7333a53cc.js.gz │ │ ├── new_direct_link-fbad868e54336c091f772b5791578bbb42a7f9f5b68b74df92a4f1e5036ad1eb.js │ │ └── new_direct_link-fbad868e54336c091f772b5791578bbb42a7f9f5b68b74df92a4f1e5036ad1eb.js.gz │ ├── graphiql │ │ └── rails │ │ │ ├── application-1fede1a7f22494ac172dba7faa0178dc39fdb8fd3c083f7cc34e264c6fae80e4.js │ │ │ ├── application-1fede1a7f22494ac172dba7faa0178dc39fdb8fd3c083f7cc34e264c6fae80e4.js.gz │ │ │ ├── application-25a31174d4e10c9a77393028663254f4dbef488df65ff3d207e13fba0d0c5b88.css │ │ │ ├── application-25a31174d4e10c9a77393028663254f4dbef488df65ff3d207e13fba0d0c5b88.css.gz │ │ │ ├── application-3d60abf7d2aa2f1db0e8c6f8a6ef46291714c6bd43401f239f6f4656255098b0.css │ │ │ ├── application-3d60abf7d2aa2f1db0e8c6f8a6ef46291714c6bd43401f239f6f4656255098b0.css.gz │ │ │ ├── application-71827c241c0660cd42f13f968446d06b8b2259896562b3c75bf5e49fdc9d48f9.css │ │ │ ├── application-71827c241c0660cd42f13f968446d06b8b2259896562b3c75bf5e49fdc9d48f9.css.gz │ │ │ ├── application-a59a59c626e517e2e96a2685d882482f43971be2612e1613205bba1c3802f3ac.js │ │ │ ├── application-a59a59c626e517e2e96a2685d882482f43971be2612e1613205bba1c3802f3ac.js.gz │ │ │ ├── application-c188dd7e290410468ed6517312098e013ba4b0cb6c05e4339c28ce7baed7cfad.js │ │ │ └── application-c188dd7e290410468ed6517312098e013ba4b0cb6c05e4339c28ce7baed7cfad.js.gz │ ├── header │ │ ├── show-999237be1ae132de7a27ff0eb3a772f80bdcd53568ad6d9c855dc58316404702.js │ │ ├── show-999237be1ae132de7a27ff0eb3a772f80bdcd53568ad6d9c855dc58316404702.js.gz │ │ ├── show-d79909b201629f9f3fc00daff32c898dd4ce2c59c688796f78e61166ffa04ec9.js │ │ ├── show-d79909b201629f9f3fc00daff32c898dd4ce2c59c688796f78e61166ffa04ec9.js.gz │ │ ├── show-deeca73af18bdd794228be6962471e08cfba160ab6e21b37a9da5fc391a71b69.js │ │ └── show-deeca73af18bdd794228be6962471e08cfba160ab6e21b37a9da5fc391a71b69.js.gz │ ├── img-empty-2cc8ef56a8c1d922a56fbbc92182fe21d264adf6c2ee8d8dc11c366835c4598f.png │ ├── img-empty-d84690171c348dffefccbda978fe0df91ff47671398d719ee86428bc0329d1ca.png │ ├── initiatives │ │ ├── show-691c6785460c8e18c8d9ba19ee6cbc4ed2dbbf613b93b225fbcbc7db5456a766.js │ │ ├── show-691c6785460c8e18c8d9ba19ee6cbc4ed2dbbf613b93b225fbcbc7db5456a766.js.gz │ │ ├── show-a203b6ad3db78aafa1a14f4346107b685cf443d10391bf3237e81ea059f8c17b.js │ │ └── show-a203b6ad3db78aafa1a14f4346107b685cf443d10391bf3237e81ea059f8c17b.js.gz │ ├── jira_project_configs │ │ ├── form_modal-075a9f63c5070a9aaddb9e61fc0868ab14874d8401b475ff6e007fd0788ab451.js │ │ ├── form_modal-075a9f63c5070a9aaddb9e61fc0868ab14874d8401b475ff6e007fd0788ab451.js.gz │ │ ├── form_modal-1cd29eab2e9de728b1d00d5e7c66b1f2a99244aa43f55cea54132fdeac0cb05a.js │ │ ├── form_modal-1cd29eab2e9de728b1d00d5e7c66b1f2a99244aa43f55cea54132fdeac0cb05a.js.gz │ │ ├── form_modal-5db8dbb2774f7bcce00208ba840dd641df661de5e8951062b121e18482f7d8a1.js │ │ └── form_modal-5db8dbb2774f7bcce00208ba840dd641df661de5e8951062b121e18482f7d8a1.js.gz │ ├── jquery-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js │ ├── jquery-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js.gz │ ├── jquery.min-693ce4426a47c40b80ac9cd618fbd633c4182bff664d1f25009813f456c3ed12.js │ ├── jquery.min-693ce4426a47c40b80ac9cd618fbd633c4182bff664d1f25009813f456c3ed12.js.gz │ ├── jquery2-25ca496239ae8641a09627c8aace5863e7676e465fbb4ce81bc7eb78c4d15627.js │ ├── jquery2-25ca496239ae8641a09627c8aace5863e7676e465fbb4ce81bc7eb78c4d15627.js.gz │ ├── jquery2.min-bc8282586e3c9b075064b64bd37f30138f89bca3a516da709f7cd788b2a11ecd.js │ ├── jquery2.min-bc8282586e3c9b075064b64bd37f30138f89bca3a516da709f7cd788b2a11ecd.js.gz │ ├── jquery3-06c43429d1047ce3f355da574d8a9750209971b8b1b8f264f91f5518c5fcc060.js │ ├── jquery3-06c43429d1047ce3f355da574d8a9750209971b8b1b8f264f91f5518c5fcc060.js.gz │ ├── jquery3-5af507e253c37e9c9dcf65064fc3f93795e6e28012780579975a4d709f4074ad.js │ ├── jquery3-5af507e253c37e9c9dcf65064fc3f93795e6e28012780579975a4d709f4074ad.js.gz │ ├── jquery3-e200ee796ef24add7054280d843a80de75392557bb4248241e870fac0914c0c1.js │ ├── jquery3-e200ee796ef24add7054280d843a80de75392557bb4248241e870fac0914c0c1.js.gz │ ├── jquery3.min-5c2148f394c0d0085e316066a9ec847d1d5335885c0ab4a32480ad882998ed3f.js │ ├── jquery3.min-5c2148f394c0d0085e316066a9ec847d1d5335885c0ab4a32480ad882998ed3f.js.gz │ ├── jquery3.min-875821d1e3121b366b94ea86a07f3cbc5c76cb16a319bc62212c03a805ff20e9.js │ ├── jquery3.min-875821d1e3121b366b94ea86a07f3cbc5c76cb16a319bc62212c03a805ff20e9.js.gz │ ├── jquery3.min-922c42b88314b04fba4f23bb741e45c885adb1c737c4e15e4286f15d7eb03e1e.js │ ├── jquery3.min-922c42b88314b04fba4f23bb741e45c885adb1c737c4e15e4286f15d7eb03e1e.js.gz │ ├── jquery_ujs-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js │ ├── jquery_ujs-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js.gz │ ├── logo_grande_beira_rio-d7e8ec1a5d37271b2101fa1683ad25fd14bb182ad507b5d838dfbfd00d664836.png │ ├── manifest-2f0ac84ec540eb753a59078be1e78cb9bb00e12a9a8d6d826039a818a0008610.js │ ├── manifest-2f0ac84ec540eb753a59078be1e78cb9bb00e12a9a8d6d826039a818a0008610.js.gz │ ├── manifest-9a8eb904a98d0b7c93b4217408069b438077b8002f48f09f6cdcb8d938db0420.js │ ├── manifest-9a8eb904a98d0b7c93b4217408069b438077b8002f48f09f6cdcb8d938db0420.js.gz │ ├── manifest-e761884522a9ca2dac475b68bac1946c990fb9af8b676d3b6b45692a920c8d04.js │ ├── manifest-e761884522a9ca2dac475b68bac1946c990fb9af8b676d3b6b45692a920c8d04.js.gz │ ├── memberships │ │ ├── search_memberships-6cccece5b00860067f085638f9f1ce2de4e74991797925aa0fdab22172835d6f.js │ │ ├── search_memberships-6cccece5b00860067f085638f9f1ce2de4e74991797925aa0fdab22172835d6f.js.gz │ │ ├── search_memberships-db9c96245670431f0a536305da81b932b45aaeb15afeda7b1fe8a01081aabdd4.js │ │ └── search_memberships-db9c96245670431f0a536305da81b932b45aaeb15afeda7b1fe8a01081aabdd4.js.gz │ ├── operational_charts │ │ ├── charts_filter-00b48d5adc72f71853f4b7e819de580951b9010340f1ac6ff54123359ec13b43.js │ │ ├── charts_filter-00b48d5adc72f71853f4b7e819de580951b9010340f1ac6ff54123359ec13b43.js.gz │ │ ├── charts_filter-75c60abb6a40f90c178eff49f07bd65c8ac4ed722746814e3d7b5dff1583306e.js │ │ └── charts_filter-75c60abb6a40f90c178eff49f07bd65c8ac4ed722746814e3d7b5dff1583306e.js.gz │ ├── portfolio_units │ │ ├── show-208575f9691ab60e70003c6f2bd17359950f09577050fbd31c90075781435346.js │ │ ├── show-208575f9691ab60e70003c6f2bd17359950f09577050fbd31c90075781435346.js.gz │ │ ├── show-62cc76ed3d65e8574d0174ff44191914afe30af589e6a1ba7cca72d7d5bfcdcd.js │ │ ├── show-62cc76ed3d65e8574d0174ff44191914afe30af589e6a1ba7cca72d7d5bfcdcd.js.gz │ │ ├── show-f7750c60ab99c40bda893b94df823874aaf122a2446af86cafb4901fddd74328.js │ │ └── show-f7750c60ab99c40bda893b94df823874aaf122a2446af86cafb4901fddd74328.js.gz │ ├── products │ │ ├── form-9429cff6c4d104a5b86b043354ffac0122ac5fa0632f0707f391ce471c0ad88d.js │ │ ├── form-9429cff6c4d104a5b86b043354ffac0122ac5fa0632f0707f391ce471c0ad88d.js.gz │ │ ├── form-9ccea666907168bf9fa5dcc3cc1162598329a3c45d4420d232a1c853e7d2a541.js │ │ ├── form-9ccea666907168bf9fa5dcc3cc1162598329a3c45d4420d232a1c853e7d2a541.js.gz │ │ ├── form-e78bf471fbe0a4be73e5e5796180ecb730750cfead1a14e1f1cd827c93dea865.js │ │ ├── form-e78bf471fbe0a4be73e5e5796180ecb730750cfead1a14e1f1cd827c93dea865.js.gz │ │ ├── product_navigation_behaviour-21f9d9b3a5047b3a3282ed3c662c15bfd23ee58151138d47d6b9bb24963dc483.js │ │ ├── product_navigation_behaviour-21f9d9b3a5047b3a3282ed3c662c15bfd23ee58151138d47d6b9bb24963dc483.js.gz │ │ ├── product_navigation_behaviour-6c185901ff1fc8714d82e48b2d85206b7332568209b784e611f017e0e22d9993.js │ │ ├── product_navigation_behaviour-6c185901ff1fc8714d82e48b2d85206b7332568209b784e611f017e0e22d9993.js.gz │ │ ├── product_navigation_behaviour-fc2ccf389db9e257e48b89c9a7b67268bb47b26202cf4cd003e95e46c0be9893.js │ │ ├── product_navigation_behaviour-fc2ccf389db9e257e48b89c9a7b67268bb47b26202cf4cd003e95e46c0be9893.js.gz │ │ ├── show-7a9cbd005aa5a010bb328eff9bd756bcf8e86515b86695420269dcd822761abf.js │ │ ├── show-7a9cbd005aa5a010bb328eff9bd756bcf8e86515b86695420269dcd822761abf.js.gz │ │ ├── show-bc937e458fb30b0c25f4a13e776100efd6b2e3d0baca51ae3cfc4f6e89a7798c.js │ │ ├── show-bc937e458fb30b0c25f4a13e776100efd6b2e3d0baca51ae3cfc4f6e89a7798c.js.gz │ │ ├── show-c2cb6fa2d764ad952ac0fd13bbb3a7d3a2c6d3add92075669c326cc5b600044d.js │ │ └── show-c2cb6fa2d764ad952ac0fd13bbb3a7d3a2c6d3add92075669c326cc5b600044d.js.gz │ ├── project_jira_configs │ │ ├── form_modal-1cd29eab2e9de728b1d00d5e7c66b1f2a99244aa43f55cea54132fdeac0cb05a.js │ │ └── form_modal-1cd29eab2e9de728b1d00d5e7c66b1f2a99244aa43f55cea54132fdeac0cb05a.js.gz │ ├── project_risk_configs │ │ ├── new-19069b7471f4ddff5635fe557600a5b2008b999d159f3c3317edb08251834613.js │ │ ├── new-19069b7471f4ddff5635fe557600a5b2008b999d159f3c3317edb08251834613.js.gz │ │ ├── new-ae95320125af7062b69afc50283fa5ae0ef286296b98ed29fe2806e4785f1fff.js │ │ ├── new-ae95320125af7062b69afc50283fa5ae0ef286296b98ed29fe2806e4785f1fff.js.gz │ │ ├── new-f2b4a1fed27554e1b7a5777a2b35ebd43c7d518a93c54246cf19bf88a9733383.js │ │ └── new-f2b4a1fed27554e1b7a5777a2b35ebd43c7d518a93c54246cf19bf88a9733383.js.gz │ ├── projects │ │ ├── charts-09876133aa7e4e017005cf6ea54464ece3b5a1d7dfa2368b054c4462f46813b6.js │ │ ├── charts-09876133aa7e4e017005cf6ea54464ece3b5a1d7dfa2368b054c4462f46813b6.js.gz │ │ ├── charts-153facf232ebafe62329351d0f3a6fbf9a13263d85b1efe56aab79db58c0b783.js │ │ ├── charts-153facf232ebafe62329351d0f3a6fbf9a13263d85b1efe56aab79db58c0b783.js.gz │ │ ├── charts-4254a67da65ed602d4b0397d1ea0041f4ae5862f5c74ddfd0169e1ba23fd22b8.js │ │ ├── charts-4254a67da65ed602d4b0397d1ea0041f4ae5862f5c74ddfd0169e1ba23fd22b8.js.gz │ │ ├── closing_dashboard-3319c6a1aa9b0c6439b142453f4a94921c419c4d227094f968ea16487afcb644.js │ │ ├── closing_dashboard-3319c6a1aa9b0c6439b142453f4a94921c419c4d227094f968ea16487afcb644.js.gz │ │ ├── closing_dashboard-55064ae28510c428e8105d612289bcc42509da4309733e49e16da010863489ad.js │ │ ├── closing_dashboard-55064ae28510c428e8105d612289bcc42509da4309733e49e16da010863489ad.js.gz │ │ ├── closing_dashboard-9aa4ba3078ea2cdd291729acfe649851ad2d7e16cdf8925e130094bba7be84cd.js │ │ ├── closing_dashboard-9aa4ba3078ea2cdd291729acfe649851ad2d7e16cdf8925e130094bba7be84cd.js.gz │ │ ├── column_flow_pressure_chart-4d235f333eca21d8a7778371c1e9e49f78efb468f1a2d677335d1320aee08da9.js │ │ ├── column_flow_pressure_chart-4d235f333eca21d8a7778371c1e9e49f78efb468f1a2d677335d1320aee08da9.js.gz │ │ ├── column_hours_demand_chart-aaded105a4aa43362b44dd74c51f9c39759f3a71b9b439b0790e8343f7f37202.js │ │ ├── column_hours_demand_chart-aaded105a4aa43362b44dd74c51f9c39759f3a71b9b439b0790e8343f7f37202.js.gz │ │ ├── column_throughput_per_week_chart-919a3e70d6901ab96373955a4e64acab7fe029231553294d71025a4d6fc7f87a.js │ │ ├── column_throughput_per_week_chart-919a3e70d6901ab96373955a4e64acab7fe029231553294d71025a4d6fc7f87a.js.gz │ │ ├── demand_classification_charts-af45897b85d8bd16fce8f16fb4272cc094af65c940b91b1ff080bfd57f11d68d.js │ │ ├── demand_classification_charts-af45897b85d8bd16fce8f16fb4272cc094af65c940b91b1ff080bfd57f11d68d.js.gz │ │ ├── demand_classification_charts-bdc1cfc7093ba49cd8375c8d76bb55fb348bd3fb5af5ec0e264f3a250fa28665.js │ │ ├── demand_classification_charts-bdc1cfc7093ba49cd8375c8d76bb55fb348bd3fb5af5ec0e264f3a250fa28665.js.gz │ │ ├── demand_classification_charts-cea4e8597cdd7e137d3a4034ed4abc6801b7f2d3cde54dce03cdee831ed349b8.js │ │ ├── demand_classification_charts-cea4e8597cdd7e137d3a4034ed4abc6801b7f2d3cde54dce03cdee831ed349b8.js.gz │ │ ├── demands_list-e248605eca22d7f332d0ed156af199de5b24bbcc40474a0122638b1e487a1aa4.js │ │ ├── demands_list-e248605eca22d7f332d0ed156af199de5b24bbcc40474a0122638b1e487a1aa4.js.gz │ │ ├── demands_list-ffc7ac3ab753ad60590f8d46cb081d94fca37323ee72dc588a01d92fd4bcb85c.js │ │ ├── demands_list-ffc7ac3ab753ad60590f8d46cb081d94fca37323ee72dc588a01d92fd4bcb85c.js.gz │ │ ├── eventline-31f1888d3aaec61ad2b20f7c54fc50e69cb93705f26e73f961da09e2e3be744d.js │ │ ├── eventline-31f1888d3aaec61ad2b20f7c54fc50e69cb93705f26e73f961da09e2e3be744d.js.gz │ │ ├── eventline-3b72276fb2583cc7a828f585f0bc292f5a36b9685782a4433d528fbae4f2d372.js │ │ ├── eventline-3b72276fb2583cc7a828f585f0bc292f5a36b9685782a4433d528fbae4f2d372.js.gz │ │ ├── eventline-d8d01941c7c9e53513ce240823899a582a5ef3bd1ee7570c9274b0d510d09450.js │ │ ├── eventline-d8d01941c7c9e53513ce240823899a582a5ef3bd1ee7570c9274b0d510d09450.js.gz │ │ ├── form-95707d892497f9a9edb02b0931cbde6895fe61518b66e7590ec0ffba0752b4dc.js │ │ ├── form-95707d892497f9a9edb02b0931cbde6895fe61518b66e7590ec0ffba0752b4dc.js.gz │ │ ├── form-d9b3a775887a64e1287912e348e5f591a00b951915a7be660e9495ebe023f407.js │ │ ├── form-d9b3a775887a64e1287912e348e5f591a00b951915a7be660e9495ebe023f407.js.gz │ │ ├── form-ea903df6be768658c759b1fd31d76baa963261420cce811b938867eb0dd35b4d.js │ │ ├── form-ea903df6be768658c759b1fd31d76baa963261420cce811b938867eb0dd35b4d.js.gz │ │ ├── index-071994c0cb7e86b5b4d9ed7c6d4fb55599bd39c881ec4cd06a49d85d879ad27b.js │ │ ├── index-071994c0cb7e86b5b4d9ed7c6d4fb55599bd39c881ec4cd06a49d85d879ad27b.js.gz │ │ ├── index-3cb6e3b6a6baf18b855abd9d873d3d5b32c4cd44a4cbad6d66bc4438ea48655d.js │ │ ├── index-3cb6e3b6a6baf18b855abd9d873d3d5b32c4cd44a4cbad6d66bc4438ea48655d.js.gz │ │ ├── index-e0c61868fcb4ea976ddcc842ac49b8ecf5379738193ff62b55f9728423170da4.js │ │ ├── index-e0c61868fcb4ea976ddcc842ac49b8ecf5379738193ff62b55f9728423170da4.js.gz │ │ ├── line_cmd-2583387c2eba3e6513c076084e3e069998ef384159e519ccef5a8b455a3babd2.js │ │ ├── line_cmd-2583387c2eba3e6513c076084e3e069998ef384159e519ccef5a8b455a3babd2.js.gz │ │ ├── project_navigation_behaviour-064babec5a13803b47d01f8aee8e94322df5d58c0018da550c049602e925a2b7.js │ │ ├── project_navigation_behaviour-064babec5a13803b47d01f8aee8e94322df5d58c0018da550c049602e925a2b7.js.gz │ │ ├── project_navigation_behaviour-623cf311bd2977bebdada9fbe8a84279e7c1c647cb689f0588593663e2364026.js │ │ ├── project_navigation_behaviour-623cf311bd2977bebdada9fbe8a84279e7c1c647cb689f0588593663e2364026.js.gz │ │ ├── project_navigation_behaviour-93346298523617610a18a953d172195b535d12270d3e376aca81db87906fe4eb.js │ │ ├── project_navigation_behaviour-93346298523617610a18a953d172195b535d12270d3e376aca81db87906fe4eb.js.gz │ │ ├── projects_search-2704d4db353a2ef028b7eed176409a22fe20de606971764a96da2864f9df4eb0.js │ │ ├── projects_search-2704d4db353a2ef028b7eed176409a22fe20de606971764a96da2864f9df4eb0.js.gz │ │ ├── projects_search-68fcedb3cf46d585232de9b9d52a79d899beb149905c74c53df86ac71be4c431.js │ │ ├── projects_search-68fcedb3cf46d585232de9b9d52a79d899beb149905c74c53df86ac71be4c431.js.gz │ │ ├── projects_table-7959657ab551d743950dae126fcfb95e7c0804cc4e3b457824bd300431c8c376.js │ │ ├── projects_table-7959657ab551d743950dae126fcfb95e7c0804cc4e3b457824bd300431c8c376.js.gz │ │ ├── risk_alert_color_chart-4f0acb130edd7fc4c78eebe8b5163168191804ff2e78a74313fd818ae053dfc2.js │ │ ├── risk_alert_color_chart-4f0acb130edd7fc4c78eebe8b5163168191804ff2e78a74313fd818ae053dfc2.js.gz │ │ ├── risk_alert_color_chart-6be8efcd1f3af5f1fd865546d5bf7a9be35f8c0cb5074f0c703f7b2e93bf68e8.js │ │ ├── risk_alert_color_chart-6be8efcd1f3af5f1fd865546d5bf7a9be35f8c0cb5074f0c703f7b2e93bf68e8.js.gz │ │ ├── risk_alert_color_chart-d13637144ef73c7c4d63d51fb692d545eeb38f0839412aa3b27315df2469dd33.js │ │ ├── risk_alert_color_chart-d13637144ef73c7c4d63d51fb692d545eeb38f0839412aa3b27315df2469dd33.js.gz │ │ ├── running_projects_charts-67d26ed05847c30b6691afff46effe9b1306cb2f2b10c17cadcb87d80c35f5b4.js │ │ ├── running_projects_charts-67d26ed05847c30b6691afff46effe9b1306cb2f2b10c17cadcb87d80c35f5b4.js.gz │ │ ├── running_projects_charts-e622d0da5005651c98bdde35a40fda077a6851738333b5a440ed63150b90e298.js │ │ ├── running_projects_charts-e622d0da5005651c98bdde35a40fda077a6851738333b5a440ed63150b90e298.js.gz │ │ ├── show-101a7cc290552739a800b6569fe791751c558f240c359f079be722d8a3ec8cf9.js │ │ ├── show-101a7cc290552739a800b6569fe791751c558f240c359f079be722d8a3ec8cf9.js.gz │ │ ├── show-15d66ec035cdeb572cb4ba2b0679592e3f83c714a2bf7a0ecb8b9345bff7656f.js │ │ ├── show-15d66ec035cdeb572cb4ba2b0679592e3f83c714a2bf7a0ecb8b9345bff7656f.js.gz │ │ ├── show-9dfafa9de51542bdb7c6d996afedc7c5125380416963178507a4eea00a38a5e3.js │ │ ├── show-9dfafa9de51542bdb7c6d996afedc7c5125380416963178507a4eea00a38a5e3.js.gz │ │ ├── statistics_tab-6602a4fb11707364f54831f6bdc97aa7e614b2f24477bde06517665e01e514e9.js │ │ ├── statistics_tab-6602a4fb11707364f54831f6bdc97aa7e614b2f24477bde06517665e01e514e9.js.gz │ │ ├── status_report-3c52b943f5c7b675500c7d7d5edd758ff5e1dd7aca2bbbf64c00bb34caf7bdb0.js │ │ ├── status_report-3c52b943f5c7b675500c7d7d5edd758ff5e1dd7aca2bbbf64c00bb34caf7bdb0.js.gz │ │ ├── status_report-679fcce9c84b1e9aa3e72200c2e293c0ba78b72e2f2ff112aaa293a27b12ec8e.js │ │ ├── status_report-679fcce9c84b1e9aa3e72200c2e293c0ba78b72e2f2ff112aaa293a27b12ec8e.js.gz │ │ ├── status_report-716350071ec5d24901bcce6a8675122cad751ba42baf14f45673ffdb2a62fc17.js │ │ ├── status_report-716350071ec5d24901bcce6a8675122cad751ba42baf14f45673ffdb2a62fc17.js.gz │ │ ├── status_report_current-5dc0b7057cfdd2889bf7dbf81835bff352ba6a884d6aef3aea34cf395e0541fb.js │ │ ├── status_report_current-5dc0b7057cfdd2889bf7dbf81835bff352ba6a884d6aef3aea34cf395e0541fb.js.gz │ │ ├── status_report_current-7e94b897f0e0f71ae7cf9342faed141afab7491154b249697559f71e3fd28e86.js │ │ ├── status_report_current-7e94b897f0e0f71ae7cf9342faed141afab7491154b249697559f71e3fd28e86.js.gz │ │ ├── status_report_current-cd97a9fb6058d5f4f169abb722f9130c379a34d0cc4e96ac3b0489d8bff68ca6.js │ │ ├── status_report_current-cd97a9fb6058d5f4f169abb722f9130c379a34d0cc4e96ac3b0489d8bff68ca6.js.gz │ │ ├── status_report_projection-48263a521425f56f82b7c72049db730b3b33a6ccb31fec553c59db258f4b405a.js │ │ ├── status_report_projection-48263a521425f56f82b7c72049db730b3b33a6ccb31fec553c59db258f4b405a.js.gz │ │ ├── status_report_projection-b7edfde16ba80a780c6ef62ca4a65647529f75043bfbf4173db50e28b054d98d.js │ │ ├── status_report_projection-b7edfde16ba80a780c6ef62ca4a65647529f75043bfbf4173db50e28b054d98d.js.gz │ │ ├── status_report_projection-ed7baa726dbbafa98a3cea61d4b32823bbe31b35d821267f0ef182680695bce8.js │ │ └── status_report_projection-ed7baa726dbbafa98a3cea61d4b32823bbe31b35d821267f0ef182680695bce8.js.gz │ ├── rails-ujs-2b8935521e2301b06b45bd42e623eb0c0acf76c3a6ba383b7429c6a2884f8c23.js │ ├── rails-ujs-2b8935521e2301b06b45bd42e623eb0c0acf76c3a6ba383b7429c6a2884f8c23.js.gz │ ├── rails-ujs-4bea287f0926dcb2acb3a6ed454eb6665ead78dbd08c95522fbd49c9053065ae.js │ ├── rails-ujs-4bea287f0926dcb2acb3a6ed454eb6665ead78dbd08c95522fbd49c9053065ae.js.gz │ ├── rails-ujs-d109d8c5c0194c8ad60b8838b2661c5596b5c955987f7cd4045eb2fb90ca5343.js │ ├── rails-ujs-d109d8c5c0194c8ad60b8838b2661c5596b5c955987f7cd4045eb2fb90ca5343.js.gz │ ├── replenishing_consolidations │ │ ├── index-7143ac9b615679261d0dedf8a102033136e65340a1595d5698dc54ea450bf2bc.js │ │ └── index-7143ac9b615679261d0dedf8a102033136e65340a1595d5698dc54ea450bf2bc.js.gz │ ├── risk_reviews │ │ ├── show-8a6b568b9764ad38133061e8384281ab00748d7e9cabdb48a6290ec5b4783bfc.js │ │ ├── show-8a6b568b9764ad38133061e8384281ab00748d7e9cabdb48a6290ec5b4783bfc.js.gz │ │ ├── show-9c99fd58f15e8416dd9c1b1dc0cda1a99459a41c2fe6312a5fdebfeb8d847805.js │ │ ├── show-9c99fd58f15e8416dd9c1b1dc0cda1a99459a41c2fe6312a5fdebfeb8d847805.js.gz │ │ ├── show-debe85dc2002db40e23359715da42aa18cdec71075d70388008966fd9c52b6ca.js │ │ └── show-debe85dc2002db40e23359715da42aa18cdec71075d70388008966fd9c52b6ca.js.gz │ ├── routes │ │ ├── chart_routes-1983eb5d584b3c5cd14e64cd519347df3b8ea2f01cb78e3e6bf8b35e531e98b3.js │ │ ├── chart_routes-1983eb5d584b3c5cd14e64cd519347df3b8ea2f01cb78e3e6bf8b35e531e98b3.js.gz │ │ ├── chart_routes-f09aeea8d5dae3f2fb0b4a8e71f59e69c20fb8be522535475d18e0b292d63b45.js │ │ ├── chart_routes-f09aeea8d5dae3f2fb0b4a8e71f59e69c20fb8be522535475d18e0b292d63b45.js.gz │ │ ├── chart_routes-f88c75bb8611a9b4d5f465a39c4f5d7fd37841ce89994ef62761e67885fa209c.js │ │ ├── chart_routes-f88c75bb8611a9b4d5f465a39c4f5d7fd37841ce89994ef62761e67885fa209c.js.gz │ │ ├── company_routes-65e61b025edc567a521459c4ace6ac65b31055286aeda94812a55684285f06e0.js │ │ ├── company_routes-65e61b025edc567a521459c4ace6ac65b31055286aeda94812a55684285f06e0.js.gz │ │ ├── company_routes-b4e6d457ebc3f58f0dddb63ae545a1bdd3d2db20d2243da79b928a832d178af3.js │ │ ├── company_routes-b4e6d457ebc3f58f0dddb63ae545a1bdd3d2db20d2243da79b928a832d178af3.js.gz │ │ ├── company_routes-c216abe5f58a98349ff84208ddaa112bf01c3986e7e9eff05c2e2973070c3f61.js │ │ ├── company_routes-c216abe5f58a98349ff84208ddaa112bf01c3986e7e9eff05c2e2973070c3f61.js.gz │ │ ├── customer_routes-07b3878a992321814f17c3fead1ed42fb2ab49c7b5732a90e1f9e0c001fe6376.js │ │ ├── customer_routes-07b3878a992321814f17c3fead1ed42fb2ab49c7b5732a90e1f9e0c001fe6376.js.gz │ │ ├── customer_routes-ccfb7b5a4cc7314b8eb79fb90481c11f82176d59f7367526eee68d4243f6e45e.js │ │ ├── customer_routes-ccfb7b5a4cc7314b8eb79fb90481c11f82176d59f7367526eee68d4243f6e45e.js.gz │ │ ├── demand_block_routes-a8b86135db8ef3573b13cad1fd9157835b7ab021d3e1aeaf2386910ec86fe3c0.js │ │ ├── demand_block_routes-a8b86135db8ef3573b13cad1fd9157835b7ab021d3e1aeaf2386910ec86fe3c0.js.gz │ │ ├── demand_block_routes-b13ab80d822b4a0928f48d9722159aa4468d822b900c8ea8788e77364dc01987.js │ │ ├── demand_block_routes-b13ab80d822b4a0928f48d9722159aa4468d822b900c8ea8788e77364dc01987.js.gz │ │ ├── demand_block_routes-b6b35406fe23c255a588aa41d0ce1827a13ae9fef4d3b6c8fa8f2d8b1daec1d3.js │ │ ├── demand_block_routes-b6b35406fe23c255a588aa41d0ce1827a13ae9fef4d3b6c8fa8f2d8b1daec1d3.js.gz │ │ ├── demand_routes-23945480c39298ed89c8a84ceea52036d35e18c2c37eb465ba0dfa98b79b1f8c.js │ │ ├── demand_routes-23945480c39298ed89c8a84ceea52036d35e18c2c37eb465ba0dfa98b79b1f8c.js.gz │ │ ├── demand_routes-6b1ea078a729d0d91292320a5dbcd53977eb82ac68daf551444394d344a6730f.js │ │ ├── demand_routes-6b1ea078a729d0d91292320a5dbcd53977eb82ac68daf551444394d344a6730f.js.gz │ │ ├── demand_routes-c566f1b6ada1b85ee0346c4dd372dbe1b6945953d8dab84957cab1612ab20bd5.js │ │ ├── demand_routes-c566f1b6ada1b85ee0346c4dd372dbe1b6945953d8dab84957cab1612ab20bd5.js.gz │ │ ├── flow_impact_routes-15b526fa3d293eeb1efed53d1daf83d89bf3c2454fea3684ff906fec7ef2694e.js │ │ ├── flow_impact_routes-15b526fa3d293eeb1efed53d1daf83d89bf3c2454fea3684ff906fec7ef2694e.js.gz │ │ ├── flow_impact_routes-1b9944a0ce91aae2bc45f24faff18e3154f4670e9d76ea9378924b407c67dafb.js │ │ ├── flow_impact_routes-1b9944a0ce91aae2bc45f24faff18e3154f4670e9d76ea9378924b407c67dafb.js.gz │ │ ├── flow_impact_routes-901e7fe65de5135afee11e6dd3540a2f51c12a74d51e91ed4d6f563635b5dca6.js │ │ ├── flow_impact_routes-901e7fe65de5135afee11e6dd3540a2f51c12a74d51e91ed4d6f563635b5dca6.js.gz │ │ ├── membership_routes-bb312b8fb27596c2cfe2170167e7603cd56dd2abd1831a1bd9b210bd35a75337.js │ │ ├── membership_routes-bb312b8fb27596c2cfe2170167e7603cd56dd2abd1831a1bd9b210bd35a75337.js.gz │ │ ├── membership_routes-c5c45f10f6545470e1127f4f2d683c30c00f3325dca88409301871fe766b3f26.js │ │ ├── membership_routes-c5c45f10f6545470e1127f4f2d683c30c00f3325dca88409301871fe766b3f26.js.gz │ │ ├── product_routes-60e5f01a92cf147cb8887638bfcf1a3a737cc98cdba0d3d3d834fed2a836ee44.js │ │ ├── product_routes-60e5f01a92cf147cb8887638bfcf1a3a737cc98cdba0d3d3d834fed2a836ee44.js.gz │ │ ├── product_routes-a12b6c5fee4171529b92acf3e1409059bd3c156bd6a10c1845129de8a7ecd180.js │ │ ├── product_routes-a12b6c5fee4171529b92acf3e1409059bd3c156bd6a10c1845129de8a7ecd180.js.gz │ │ ├── product_routes-fc62fb3f79fb01b353104e9a4d68cb181926f803606aa9f3e630569f22281014.js │ │ ├── product_routes-fc62fb3f79fb01b353104e9a4d68cb181926f803606aa9f3e630569f22281014.js.gz │ │ ├── project_routes-20190d06adebf684e504553af11015cb543ec45d9fadbdc0b4afeda1dbf17d44.js │ │ ├── project_routes-20190d06adebf684e504553af11015cb543ec45d9fadbdc0b4afeda1dbf17d44.js.gz │ │ ├── project_routes-83a9d4e6a89544aeddd7860b769c5d10dcec74f7bcce004bd117fe31eac5ad5e.js │ │ ├── project_routes-83a9d4e6a89544aeddd7860b769c5d10dcec74f7bcce004bd117fe31eac5ad5e.js.gz │ │ ├── project_routes-8fbf24d2de8a7feab9217fe7457c72992cdb1be8ebe355c8e869e572113e91c8.js │ │ ├── project_routes-8fbf24d2de8a7feab9217fe7457c72992cdb1be8ebe355c8e869e572113e91c8.js.gz │ │ ├── score_matrix_routes-662f80e34e3d915a0049c0947b406c325529952ba110168833927c736655f0ad.js │ │ ├── score_matrix_routes-662f80e34e3d915a0049c0947b406c325529952ba110168833927c736655f0ad.js.gz │ │ ├── team_member_routes-baad1d1c0c5b5a45a8eedaa8151baed1137f1d3ee85cabfe96f39f414e55ab74.js │ │ ├── team_member_routes-baad1d1c0c5b5a45a8eedaa8151baed1137f1d3ee85cabfe96f39f414e55ab74.js.gz │ │ ├── team_member_routes-e16ec45f2d5b95e8e9f371bea0d6ced2ff8d002433dd2f7f3bd97e4363b17eef.js │ │ ├── team_member_routes-e16ec45f2d5b95e8e9f371bea0d6ced2ff8d002433dd2f7f3bd97e4363b17eef.js.gz │ │ ├── team_routes-46f8247f02ff1c5bb6431aa2293216297341ca550e9a54ec393a8f783ac7aa4a.js │ │ ├── team_routes-46f8247f02ff1c5bb6431aa2293216297341ca550e9a54ec393a8f783ac7aa4a.js.gz │ │ ├── team_routes-7563a2e7fff13f8e756ee5e53804df8a8bca3fd783d66a33689e00cbaf6f74b4.js │ │ ├── team_routes-7563a2e7fff13f8e756ee5e53804df8a8bca3fd783d66a33689e00cbaf6f74b4.js.gz │ │ ├── team_routes-fbd758bbe0f1eb623b3bcfd7da407c79366d7178cb66727074fc7dc33adf7f20.js │ │ ├── team_routes-fbd758bbe0f1eb623b3bcfd7da407c79366d7178cb66727074fc7dc33adf7f20.js.gz │ │ ├── user_routes-028045fabfc2434a4cb2412bd56703b2bb131cbe8c7e004866153b0908460480.js │ │ ├── user_routes-028045fabfc2434a4cb2412bd56703b2bb131cbe8c7e004866153b0908460480.js.gz │ │ ├── user_routes-60ee9c747631e8df89a69577b90876e1de16552dbf5a885f18a51d31abdd19f7.js │ │ └── user_routes-60ee9c747631e8df89a69577b90876e1de16552dbf5a885f18a51d31abdd19f7.js.gz │ ├── score_matrices │ │ ├── show-c75388567f4071796c0a21eb0703a2beb33badd46efc6f951ece5cebe7c17c5a.js │ │ ├── show-c75388567f4071796c0a21eb0703a2beb33badd46efc6f951ece5cebe7c17c5a.js.gz │ │ ├── show.js-009ed4d9a10fe0ff90941bc31c10097c7106f25c8d65e3636702e01fd63a3099.erb │ │ └── show.js-009ed4d9a10fe0ff90941bc31c10097c7106f25c8d65e3636702e01fd63a3099.erb.gz │ ├── service_delivery_reviews │ │ ├── show-ea8ea01884d3c67f33b8c5588b6313dc0903d59d6565be2bdadc7564dcf3a84b.js │ │ ├── show-ea8ea01884d3c67f33b8c5588b6313dc0903d59d6565be2bdadc7564dcf3a84b.js.gz │ │ ├── show-f56d2c0ae0e3278fac14d1c56db3aea2cca31c53f02b4e7db31af4cf21211d22.js │ │ ├── show-f56d2c0ae0e3278fac14d1c56db3aea2cca31c53f02b4e7db31af4cf21211d22.js.gz │ │ ├── show-fa70f9a4bfca5b9c75cd36a2168607d38246e5d2918ccf0dc9ed038e24cb4782.js │ │ └── show-fa70f9a4bfca5b9c75cd36a2168607d38246e5d2918ccf0dc9ed038e24cb4782.js.gz │ ├── shared │ │ ├── accordion-15e636ec23dfe6856b66fcd8e5348f70d492598233ffe07e00ec26d5da2e80e5.css │ │ ├── accordion-15e636ec23dfe6856b66fcd8e5348f70d492598233ffe07e00ec26d5da2e80e5.css.gz │ │ ├── accordion-1694d160e4b0390e26494063950ec37625d9e1c48b11bf63ef52fe10fc40d435.css │ │ ├── accordion-1694d160e4b0390e26494063950ec37625d9e1c48b11bf63ef52fe10fc40d435.css.gz │ │ ├── accordion-8d2534ec3bdb49ee6594614ea4271ab3e55baa97815895428cbac40f3d54bfcf.css │ │ ├── accordion-8d2534ec3bdb49ee6594614ea4271ab3e55baa97815895428cbac40f3d54bfcf.css.gz │ │ ├── charts-4aded83d7c953e9f8049b2e6b2e5cf1e4ecef561f7d1183f028c5bafec8daf88.css │ │ ├── charts-4aded83d7c953e9f8049b2e6b2e5cf1e4ecef561f7d1183f028c5bafec8daf88.css.gz │ │ ├── charts-68c576571967a53d4e3834728e2a9a0ed6054417258fd34717eaadfe61154412.css │ │ ├── charts-68c576571967a53d4e3834728e2a9a0ed6054417258fd34717eaadfe61154412.css.gz │ │ ├── charts-c079761d87bba5cc9dfacaa43b5a27b340d3ae47e999f3f2b67eb6c97b7f84fb.css │ │ ├── charts-c079761d87bba5cc9dfacaa43b5a27b340d3ae47e999f3f2b67eb6c97b7f84fb.css.gz │ │ ├── dashboard-0a216feef1cb0f3e2ffcd1c1177ac0eac2720be27ca726a7771caad0c02d6a50.css │ │ ├── dashboard-0a216feef1cb0f3e2ffcd1c1177ac0eac2720be27ca726a7771caad0c02d6a50.css.gz │ │ ├── dashboard-11984c17ccb4155529c22cd4735cc0471f19ff3080d5f425195019049aa0bd5b.css │ │ ├── dashboard-11984c17ccb4155529c22cd4735cc0471f19ff3080d5f425195019049aa0bd5b.css.gz │ │ ├── dashboard-bcf7c58481a7ba037ee88f0591526ab78888091c142f793b6ea6573cd0e49952.css │ │ ├── dashboard-bcf7c58481a7ba037ee88f0591526ab78888091c142f793b6ea6573cd0e49952.css.gz │ │ ├── error_404-295b23fcbbd4908654e2b09662205c462ae88d2bbc353c287cee91b54b241682.css │ │ ├── error_404-295b23fcbbd4908654e2b09662205c462ae88d2bbc353c287cee91b54b241682.css.gz │ │ ├── error_404-b7aa0cfe363d45d1df9a5fa6f3b855a24bfd1f11fdf9ffbba0e2658a302e3427.css │ │ ├── error_404-b7aa0cfe363d45d1df9a5fa6f3b855a24bfd1f11fdf9ffbba0e2658a302e3427.css.gz │ │ ├── error_404-ff804c03233f39a3aed6a8e8e402f48bfeecfce5575f0e9dcd0345d8fc086255.css │ │ ├── error_404-ff804c03233f39a3aed6a8e8e402f48bfeecfce5575f0e9dcd0345d8fc086255.css.gz │ │ ├── eventline-68b00134a59e30be9740618a2f4245a27fab5c35c4866baca51279402d75d56e.css │ │ ├── eventline-68b00134a59e30be9740618a2f4245a27fab5c35c4866baca51279402d75d56e.css.gz │ │ ├── eventline-77e9696d2ac35fa9e268d787086a18ac3df5a3ede5b06c233ae2ba420c79d12d.css │ │ ├── eventline-77e9696d2ac35fa9e268d787086a18ac3df5a3ede5b06c233ae2ba420c79d12d.css.gz │ │ ├── eventline-b5c0c45e64c9d7fba089e2241f85f3abd646194037b301513e523c37954682d0.css │ │ ├── eventline-b5c0c45e64c9d7fba089e2241f85f3abd646194037b301513e523c37954682d0.css.gz │ │ ├── finances-21314aa8efcc5efccdd0e5e7868b964d1568bc40c213e88be3e7ec886c47fcbf.css │ │ ├── finances-21314aa8efcc5efccdd0e5e7868b964d1568bc40c213e88be3e7ec886c47fcbf.css.gz │ │ ├── finances-a9ade5f4537f68ad0b359d558d26dbcd2fdaa541cc1630f440b8257d3e08bd02.css │ │ ├── finances-a9ade5f4537f68ad0b359d558d26dbcd2fdaa541cc1630f440b8257d3e08bd02.css.gz │ │ ├── finances-c4c84457aa0a8a65ea1aad2029eeffd9a558b4663ff0a463a0d23ced927a78d1.css │ │ ├── finances-c4c84457aa0a8a65ea1aad2029eeffd9a558b4663ff0a463a0d23ced927a78d1.css.gz │ │ ├── form-04480b1c6c4fb5e2266260b1202cc7f46525b16ff9a9c9023f68d1435a0e3d37.css │ │ ├── form-04480b1c6c4fb5e2266260b1202cc7f46525b16ff9a9c9023f68d1435a0e3d37.css.gz │ │ ├── form-c0841db68e70b31d6b893074c8acd01ceb0462c5ac5dafe7853021b91f3c5c07.css │ │ ├── form-c0841db68e70b31d6b893074c8acd01ceb0462c5ac5dafe7853021b91f3c5c07.css.gz │ │ ├── form-e679b385896a5aa803015e368752d711306b83b23213167512b0ad96d5006323.css │ │ ├── form-e679b385896a5aa803015e368752d711306b83b23213167512b0ad96d5006323.css.gz │ │ ├── header-494ffef04790f3bf7d84f6c0dfa5a7147fb0149eecec2b6f0b14122f67f1d521.css │ │ ├── header-494ffef04790f3bf7d84f6c0dfa5a7147fb0149eecec2b6f0b14122f67f1d521.css.gz │ │ ├── header-80f69db349b5ba0a6d1d278552d6ab04e887ebacae5d0293d77e2e97bfe85e9b.css │ │ ├── header-80f69db349b5ba0a6d1d278552d6ab04e887ebacae5d0293d77e2e97bfe85e9b.css.gz │ │ ├── header_footer-01afdbca6254d8a28c6b84cf5b88c235107bd0359e72b5ae156b3cd4ef150790.css │ │ ├── header_footer-01afdbca6254d8a28c6b84cf5b88c235107bd0359e72b5ae156b3cd4ef150790.css.gz │ │ ├── header_footer-7281ff3cfba6363addcd47eb2d68d5a1531f51f365cb1fef6b344a835ae08924.css │ │ ├── header_footer-7281ff3cfba6363addcd47eb2d68d5a1531f51f365cb1fef6b344a835ae08924.css.gz │ │ ├── header_footer-c8548fb6355142fa96982a937d3b7748a8c43236315a4dcba70a82a72ff2581a.css │ │ ├── header_footer-c8548fb6355142fa96982a937d3b7748a8c43236315a4dcba70a82a72ff2581a.css.gz │ │ ├── help_components-4747ce33b16775b2cc5d17f8fa393e4a48be3bf7cd15a0ab1ac2fabae1fccf9e.css │ │ ├── help_components-4747ce33b16775b2cc5d17f8fa393e4a48be3bf7cd15a0ab1ac2fabae1fccf9e.css.gz │ │ ├── help_components-6f8c745491a010f21619af4091583fed54b31312f0c45cf50d63cb34205dbd4d.css │ │ ├── help_components-6f8c745491a010f21619af4091583fed54b31312f0c45cf50d63cb34205dbd4d.css.gz │ │ ├── help_components-97dc7633c7ab12d561e54aa1182e471673d430bfc8dce64b3a29397632cfad13.css │ │ ├── help_components-97dc7633c7ab12d561e54aa1182e471673d430bfc8dce64b3a29397632cfad13.css.gz │ │ ├── index-0e1d5b66e1bcd04f7ac2f16213a2e0c1d06103eedd9e85591a5376ce4b10b22b.css │ │ ├── index-0e1d5b66e1bcd04f7ac2f16213a2e0c1d06103eedd9e85591a5376ce4b10b22b.css.gz │ │ ├── index-2fba7b97f275609202c1480bc6e8240f09ffafaf4ba3a1270fa2588a75cbc719.css │ │ ├── index-2fba7b97f275609202c1480bc6e8240f09ffafaf4ba3a1270fa2588a75cbc719.css.gz │ │ ├── index-5c610b1f8d3ffdb5eec0ed129aa9ef9f4acbe447aa90423ccd078c688c98f37f.css │ │ ├── index-5c610b1f8d3ffdb5eec0ed129aa9ef9f4acbe447aa90423ccd078c688c98f37f.css.gz │ │ ├── navbar-4b6c83d11bbf00d3e4216185f6e550abe5394ba0367ea58438563199cb05e3a4.css │ │ ├── navbar-4b6c83d11bbf00d3e4216185f6e550abe5394ba0367ea58438563199cb05e3a4.css.gz │ │ ├── navbar-ae2b41e3c9af1a50b7c06ac9b916d9e92a994166f936a9fa6e688bba46060921.css │ │ ├── navbar-ae2b41e3c9af1a50b7c06ac9b916d9e92a994166f936a9fa6e688bba46060921.css.gz │ │ ├── navbar-b0a55f3d4173fcd3592d887bcb867f29c35a5db52b3a3f37176652d738d8771e.css │ │ ├── navbar-b0a55f3d4173fcd3592d887bcb867f29c35a5db52b3a3f37176652d738d8771e.css.gz │ │ ├── price_table-164f58c2b312525cb59f169ffd1ba1343aeba6e5be2faae76b64bd331f952f75.css │ │ ├── price_table-164f58c2b312525cb59f169ffd1ba1343aeba6e5be2faae76b64bd331f952f75.css.gz │ │ ├── price_table-39bef1be9fc37034631315cb263817fb6e10c8597f0b4ab9d822c82f508cedfc.css │ │ ├── price_table-39bef1be9fc37034631315cb263817fb6e10c8597f0b4ab9d822c82f508cedfc.css.gz │ │ ├── price_table-c8113b8e26c40a260e380b8e964c1f0d30b264f2a3daa6aaf556500d7b61248b.css │ │ ├── price_table-c8113b8e26c40a260e380b8e964c1f0d30b264f2a3daa6aaf556500d7b61248b.css.gz │ │ ├── product_tree-4d2ccd033c09832c57b35451461d6e142d6fa42c6e6e27cbe3b5257e1f3cfc6b.css │ │ ├── product_tree-4d2ccd033c09832c57b35451461d6e142d6fa42c6e6e27cbe3b5257e1f3cfc6b.css.gz │ │ ├── product_tree-4e0c72760cab72fbf88b6ca604f2b5ff46aec24d7680555267fce84729863d1a.css │ │ ├── product_tree-4e0c72760cab72fbf88b6ca604f2b5ff46aec24d7680555267fce84729863d1a.css.gz │ │ ├── product_tree-650b8b9c362e3f519782d6fa094fc48962ed5036512d52e651386f8cd2e95391.css │ │ ├── product_tree-650b8b9c362e3f519782d6fa094fc48962ed5036512d52e651386f8cd2e95391.css.gz │ │ ├── show-607c83a03f23f8a75fed60826891324fcfcd28d4aa5bb6d51e32aababa129fae.css │ │ ├── show-607c83a03f23f8a75fed60826891324fcfcd28d4aa5bb6d51e32aababa129fae.css.gz │ │ ├── show-835046a00dd376267a2ec51f1ebb6ce8d00165b24815d8fb4e06db50ee670633.css │ │ ├── show-835046a00dd376267a2ec51f1ebb6ce8d00165b24815d8fb4e06db50ee670633.css.gz │ │ ├── show-cecae6bbf67e206ea5ab7464c4bf2c4d464efd1d6661be2e1227b3ba965c020a.css │ │ ├── show-cecae6bbf67e206ea5ab7464c4bf2c4d464efd1d6661be2e1227b3ba965c020a.css.gz │ │ ├── tables-79a393b81ab0277c72adb2af09e30184f3d5d364b1c73e67dc7378afaff014f8.css │ │ ├── tables-79a393b81ab0277c72adb2af09e30184f3d5d364b1c73e67dc7378afaff014f8.css.gz │ │ ├── tables-8f899e3525ce3ce784c1c19366fad19c994c25a88b79b54750c3c86a85e7065f.css │ │ ├── tables-8f899e3525ce3ce784c1c19366fad19c994c25a88b79b54750c3c86a85e7065f.css.gz │ │ ├── tables-91d948c6b0453eb09e341ac609cf548048b1135fac31c4d807bc9d0ecc06ab51.css │ │ ├── tables-91d948c6b0453eb09e341ac609cf548048b1135fac31c4d807bc9d0ecc06ab51.css.gz │ │ ├── topnavbar-49425818f8e6714853e920c1d481b811abffdae7e193d27f74a2cfcabb299483.css │ │ ├── topnavbar-49425818f8e6714853e920c1d481b811abffdae7e193d27f74a2cfcabb299483.css.gz │ │ ├── topnavbar-77bf51467178cda4ea94d870ba45a965bf29b43b67d9759221b833076b2b4d29.css │ │ ├── topnavbar-77bf51467178cda4ea94d870ba45a965bf29b43b67d9759221b833076b2b4d29.css.gz │ │ ├── topnavbar-a91aa5872efa0407c363e2099ef103d35a4f1c37a8458c37477abbbf88c9c39e.css │ │ └── topnavbar-a91aa5872efa0407c363e2099ef103d35a4f1c37a8458c37477abbbf88c9c39e.css.gz │ ├── slack_configurations │ │ ├── index-e70991cda5d8ca0f9e7b1ea49edb244bc3eafdef1547395a8aaf2ccda593474c.js │ │ └── index-e70991cda5d8ca0f9e7b1ea49edb244bc3eafdef1547395a8aaf2ccda593474c.js.gz │ ├── stages │ │ ├── charts-0b65e80c72e16a25a32bd05683718c4c1cd689f5747b78d26c631354b7501b4b.js │ │ ├── charts-0b65e80c72e16a25a32bd05683718c4c1cd689f5747b78d26c631354b7501b4b.js.gz │ │ ├── charts-8142ba4f1892539ee4856bf28aa3ed56aa6c9ca2c861291709a882c1dc80390b.js │ │ ├── charts-8142ba4f1892539ee4856bf28aa3ed56aa6c9ca2c861291709a882c1dc80390b.js.gz │ │ ├── charts-ab2af09f8eeb2aa55ab7d03bb1aeaf74d3a8422054901d9ac4af498eb77b5b6c.js │ │ ├── charts-ab2af09f8eeb2aa55ab7d03bb1aeaf74d3a8422054901d9ac4af498eb77b5b6c.js.gz │ │ ├── form_modal-0e735038cdd10a2ed63eccd23c04c1205ca70061b748332ae6c622725ac746ce.js │ │ ├── form_modal-0e735038cdd10a2ed63eccd23c04c1205ca70061b748332ae6c622725ac746ce.js.gz │ │ ├── form_modal-9c67c75c28709bb1bf5033b0606640876f94d6be44377228e12235b8062dc44a.js │ │ ├── form_modal-9c67c75c28709bb1bf5033b0606640876f94d6be44377228e12235b8062dc44a.js.gz │ │ ├── form_modal-ca86db5ecf0c677f2581855bfd4d0aecfec5646e88a4153cdf155b1cebeb30f7.js │ │ ├── form_modal-ca86db5ecf0c677f2581855bfd4d0aecfec5646e88a4153cdf155b1cebeb30f7.js.gz │ │ ├── show-5940a4b141498774c5f32384eac744d9942fb732f7aa15db8be6ea94694e83bc.js │ │ ├── show-5940a4b141498774c5f32384eac744d9942fb732f7aa15db8be6ea94694e83bc.js.gz │ │ ├── show-a69a18c9f159a5ecdf74881764ae585024727fcbac1c30abcd94e9dd75fde999.js │ │ ├── show-a69a18c9f159a5ecdf74881764ae585024727fcbac1c30abcd94e9dd75fde999.js.gz │ │ ├── show-b9dab2543a4e6aea4064673542269ac8134e7dad81efd49c5c8d938b36047c3e.js │ │ └── show-b9dab2543a4e6aea4064673542269ac8134e7dad81efd49c5c8d938b36047c3e.js.gz │ ├── stats_charts │ │ ├── statistics_charts-0d8abf7130b27145e4e4c1ad4b511d908d9689f0e8daff1e603415888e889897.js │ │ ├── statistics_charts-0d8abf7130b27145e4e4c1ad4b511d908d9689f0e8daff1e603415888e889897.js.gz │ │ ├── statistics_charts-7e2edb3a41a24e95f38c43b853c4f1fe30ce8ca96bcdcf9b0b103a6085c03ca7.js │ │ ├── statistics_charts-7e2edb3a41a24e95f38c43b853c4f1fe30ce8ca96bcdcf9b0b103a6085c03ca7.js.gz │ │ ├── statistics_charts-ff9755f155dcba210e0314b074c483e8d7746c151928f3120716704751457250.js │ │ └── statistics_charts-ff9755f155dcba210e0314b074c483e8d7746c151928f3120716704751457250.js.gz │ ├── tasks │ │ ├── charts-052e845a8b2e9bb4f6bd2fbbb229f4d5c69395397dde78ff410b4db49421e846.js │ │ ├── charts-052e845a8b2e9bb4f6bd2fbbb229f4d5c69395397dde78ff410b4db49421e846.js.gz │ │ ├── charts-7ca0e6411cb60edff2700c49e7751e40e591d417482df5863fe4847bbe7ac349.js │ │ ├── charts-7ca0e6411cb60edff2700c49e7751e40e591d417482df5863fe4847bbe7ac349.js.gz │ │ ├── charts-949d6f2a0b06edf5540af61cf2eaca277fd8e1ba8a83c72a394a7b344d644ad9.js │ │ ├── charts-949d6f2a0b06edf5540af61cf2eaca277fd8e1ba8a83c72a394a7b344d644ad9.js.gz │ │ ├── index-0222e77130f88bd7a962fd2726be56353b63c0c9d8e738e9bb7104db35ee90d6.js │ │ ├── index-0222e77130f88bd7a962fd2726be56353b63c0c9d8e738e9bb7104db35ee90d6.js.gz │ │ ├── index-17375ce58214e366c405b00478b3fd154ea37106c1e1f2b553192748ed143dc5.js │ │ └── index-17375ce58214e366c405b00478b3fd154ea37106c1e1f2b553192748ed143dc5.js.gz │ ├── team_members │ │ ├── member_payment_value-3944d41b58b4c579cdf86a1e680b0ce929ec6700986f44c7412c41f41c5640a0.js │ │ ├── member_payment_value-3944d41b58b4c579cdf86a1e680b0ce929ec6700986f44c7412c41f41c5640a0.js.gz │ │ ├── member_payment_value-921a319f2e93d29ff03bfa964d72eeac6909dcdf28a8cf2b2590eb2bc1d9fed2.js │ │ ├── member_payment_value-921a319f2e93d29ff03bfa964d72eeac6909dcdf28a8cf2b2590eb2bc1d9fed2.js.gz │ │ ├── pairings-a93e76bbbe4879e2e52fbaec9fa434bc8f18323152c3ea217386b77ef42037d9.js │ │ ├── pairings-a93e76bbbe4879e2e52fbaec9fa434bc8f18323152c3ea217386b77ef42037d9.js.gz │ │ ├── search_team_members-76e69804deab3c9746b685594ac2b912ff92a08a2d96f256e9b5b3a959967eb1.js │ │ ├── search_team_members-76e69804deab3c9746b685594ac2b912ff92a08a2d96f256e9b5b3a959967eb1.js.gz │ │ ├── search_team_members-878c897400561c16a8caea78f183c2fc7109c94b6098779bb867201db473f365.js │ │ ├── search_team_members-878c897400561c16a8caea78f183c2fc7109c94b6098779bb867201db473f365.js.gz │ │ ├── show-146a835d091dfdfa61ae61f4d37af2a711c476b97cd29d5dc232206652cf8ee1.js │ │ ├── show-146a835d091dfdfa61ae61f4d37af2a711c476b97cd29d5dc232206652cf8ee1.js.gz │ │ ├── show-22ce1bd92ea3f089c4a5fe0e3ebc70e924ec2025da39a3ce987d7b9481db09fc.js │ │ ├── show-22ce1bd92ea3f089c4a5fe0e3ebc70e924ec2025da39a3ce987d7b9481db09fc.js.gz │ │ ├── show-c5ae9a61a0bc6cb43dd35360f24b294d446a5859a5abd682870b0ee3d8521088.js │ │ ├── show-c5ae9a61a0bc6cb43dd35360f24b294d446a5859a5abd682870b0ee3d8521088.js.gz │ │ ├── user_dashboard_operations_charts-41aca3e24762adb2f61ddca6aa8aa509ee143ab83f6d93e31f44f88fd9e95ba6.js │ │ ├── user_dashboard_operations_charts-41aca3e24762adb2f61ddca6aa8aa509ee143ab83f6d93e31f44f88fd9e95ba6.js.gz │ │ ├── user_dashboard_operations_charts-6f304596509f78f070822e2234f62ceb3ee9d82fa726ad93afd35e90f3d53331.js │ │ ├── user_dashboard_operations_charts-6f304596509f78f070822e2234f62ceb3ee9d82fa726ad93afd35e90f3d53331.js.gz │ │ ├── user_dashboard_operations_charts-aa08b43b4acfd0835078715ed70fc482e91ca2837e8fd597306c163373d931e1.js │ │ └── user_dashboard_operations_charts-aa08b43b4acfd0835078715ed70fc482e91ca2837e8fd597306c163373d931e1.js.gz │ ├── teams │ │ ├── demands_list-75964229827c87c860529996676e5d76c223255d0cdbaa903f8a2683c4b942cd.js │ │ ├── demands_list-75964229827c87c860529996676e5d76c223255d0cdbaa903f8a2683c4b942cd.js.gz │ │ ├── demands_list-991cb2012e3f50652dbd5c0f3134c0f01ecff81354b3463aae6e61c60b022061.js │ │ ├── demands_list-991cb2012e3f50652dbd5c0f3134c0f01ecff81354b3463aae6e61c60b022061.js.gz │ │ ├── show-052cdd0f7acb06947cbb03ee40edae6e08ced4ec664700ffdf13114fd3f3ff3f.js │ │ ├── show-052cdd0f7acb06947cbb03ee40edae6e08ced4ec664700ffdf13114fd3f3ff3f.js.gz │ │ ├── show-0a87535535004df021f9be7028ddfbe4fa75ba5e363856598c2bea4c31bd1faf.js │ │ ├── show-0a87535535004df021f9be7028ddfbe4fa75ba5e363856598c2bea4c31bd1faf.js.gz │ │ ├── show-d024cc26219245b44d38a2029ae2aa7e856b8a9b8a1528c29690fd54b0c315f6.js │ │ ├── show-d024cc26219245b44d38a2029ae2aa7e856b8a9b8a1528c29690fd54b0c315f6.js.gz │ │ ├── team_demands_filter-07e9ba1ec24aaf15241ac65304e64161acedcf46cb284b3f28d98900ad185489.js │ │ ├── team_demands_filter-07e9ba1ec24aaf15241ac65304e64161acedcf46cb284b3f28d98900ad185489.js.gz │ │ ├── team_demands_filter-0cb402906a89fd2924f6235431bb7be2cf55ba546997e862d9a962a09ec6b2ff.js │ │ ├── team_demands_filter-0cb402906a89fd2924f6235431bb7be2cf55ba546997e862d9a962a09ec6b2ff.js.gz │ │ ├── team_navigation_behaviour-2766babd24d5378dfb1a8d2e66a6507cdb28b890261bb52bd5406d7940dc8143.js │ │ ├── team_navigation_behaviour-2766babd24d5378dfb1a8d2e66a6507cdb28b890261bb52bd5406d7940dc8143.js.gz │ │ ├── team_navigation_behaviour-75751bee1bd70c220c5ed074db4839d70a5b3a0304fc5fdc9a52b9491e8528e4.js │ │ ├── team_navigation_behaviour-75751bee1bd70c220c5ed074db4839d70a5b3a0304fc5fdc9a52b9491e8528e4.js.gz │ │ ├── team_navigation_behaviour-d08d0f67b35306c2f61c4ec82d169d860b03c24cb6e05c7e91023fd81ee494de.js │ │ ├── team_navigation_behaviour-d08d0f67b35306c2f61c4ec82d169d860b03c24cb6e05c7e91023fd81ee494de.js.gz │ │ ├── team_start_charts-56e917bd24e6a239a0d01dcb7200934578d255be0383d4309871947de652f6bd.js │ │ ├── team_start_charts-56e917bd24e6a239a0d01dcb7200934578d255be0383d4309871947de652f6bd.js.gz │ │ ├── team_start_charts-623fbe5394b34e99d22bc69c5d038160aac828913c7305c2f8a1299d9ffe1791.js │ │ ├── team_start_charts-623fbe5394b34e99d22bc69c5d038160aac828913c7305c2f8a1299d9ffe1791.js.gz │ │ ├── team_start_charts-c55bf2bd71d8516ff837478c43d8305dbc1953be12ff8dbb3d68df6e0ef6a15f.js │ │ ├── team_start_charts-c55bf2bd71d8516ff837478c43d8305dbc1953be12ff8dbb3d68df6e0ef6a15f.js.gz │ │ ├── team_tabs_behaviour-4cc8698108e947137b2c7e9af3768e2b2e806050a20ceb36717d9f5920cc797c.js │ │ ├── team_tabs_behaviour-4cc8698108e947137b2c7e9af3768e2b2e806050a20ceb36717d9f5920cc797c.js.gz │ │ ├── team_tabs_behaviour-7b1eca37eea99ef876d1e87bdb798527f4ada691c4cfb5f3c7dee31734fa2027.js │ │ ├── team_tabs_behaviour-7b1eca37eea99ef876d1e87bdb798527f4ada691c4cfb5f3c7dee31734fa2027.js.gz │ │ ├── team_tabs_behaviour-84bc0ae1ae12d1cde2684db2ee8ba5019d601cef576f75442c44ffad38ba8909.js │ │ └── team_tabs_behaviour-84bc0ae1ae12d1cde2684db2ee8ba5019d601cef576f75442c44ffad38ba8909.js.gz │ ├── top_navigation │ │ ├── tab-navigation-2e0f159821f246a575cc32dab4e084fe030caf56b4218f4877b1d72c08f6d329.js │ │ ├── tab-navigation-2e0f159821f246a575cc32dab4e084fe030caf56b4218f4877b1d72c08f6d329.js.gz │ │ ├── tab-navigation-4abe98ae9da0a8e4fc81bef0e17da756f6602ed186d0ea5a30c61df0371afee4.js │ │ ├── tab-navigation-4abe98ae9da0a8e4fc81bef0e17da756f6602ed186d0ea5a30c61df0371afee4.js.gz │ │ ├── tab-navigation-d65a3c15e2c52f618078adc1daa48b48ab19a76f4ed1206e324879b5d2d669bf.js │ │ └── tab-navigation-d65a3c15e2c52f618078adc1daa48b48ab19a76f4ed1206e324879b5d2d669bf.js.gz │ └── users │ │ ├── admin_dashboard-422022010c4e245e7511a00601c1215d3cfb500afc67895af9feba97efa2d072.js │ │ ├── admin_dashboard-422022010c4e245e7511a00601c1215d3cfb500afc67895af9feba97efa2d072.js.gz │ │ ├── admin_dashboard-cb51757463c4994e6401aa50db3a77a437b853c70c23d09a0207f2643150cd9e.js │ │ ├── admin_dashboard-cb51757463c4994e6401aa50db3a77a437b853c70c23d09a0207f2643150cd9e.js.gz │ │ ├── show-a68a34eb951f8a22efae5ab0dc56e48944f033ad20aea46128a6a4dc80e06390.js │ │ ├── show-a68a34eb951f8a22efae5ab0dc56e48944f033ad20aea46128a6a4dc80e06390.js.gz │ │ ├── show-d0d476debababf110a8523f6153d70897366db1833096b0747e47727a806079d.js │ │ ├── show-d0d476debababf110a8523f6153d70897366db1833096b0747e47727a806079d.js.gz │ │ ├── user_dashboard_manager_charts-61738e99b914890b3c8ade8b3adbde56bdc37e0610597927115f93370cc9aeae.js │ │ ├── user_dashboard_manager_charts-61738e99b914890b3c8ade8b3adbde56bdc37e0610597927115f93370cc9aeae.js.gz │ │ ├── user_dashboard_manager_charts-c62a88e1142544cd35194e6d0788abc42843ac04ee4804a0a841fd787bbcedde.js │ │ ├── user_dashboard_manager_charts-c62a88e1142544cd35194e6d0788abc42843ac04ee4804a0a841fd787bbcedde.js.gz │ │ ├── user_dashboard_manager_charts-e88bc663bfc8a03b04115e3703f4ba218495858f6c239290940aec35180ed967.js │ │ ├── user_dashboard_manager_charts-e88bc663bfc8a03b04115e3703f4ba218495858f6c239290940aec35180ed967.js.gz │ │ ├── user_dashboard_operations_charts-37609c8bda0e44664b6335f1f18107ab6abd7668772c241f46b961400ea28102.js │ │ ├── user_dashboard_operations_charts-37609c8bda0e44664b6335f1f18107ab6abd7668772c241f46b961400ea28102.js.gz │ │ ├── user_dashboard_operations_charts-3e15e7d69a6df359088e5c438da5f33222dd7404f7edeb07875cd69f75e1aecc.js │ │ ├── user_dashboard_operations_charts-3e15e7d69a6df359088e5c438da5f33222dd7404f7edeb07875cd69f75e1aecc.js.gz │ │ ├── user_dashboard_operations_charts-5eb830e2a2a745cb16e1eb7f8edb59158ca387ae2314d96375e18edf427b00d0.js │ │ └── user_dashboard_operations_charts-5eb830e2a2a745cb16e1eb7f8edb59158ca387ae2314d96375e18edf427b00d0.js.gz ├── favicon.ico ├── robots.txt ├── spa-build └── uploads │ └── user │ ├── 1 │ ├── default_image.png │ └── thumb_default_image.png │ ├── default_image.png │ └── thumb_default_image.png ├── scripts └── create-user.rb ├── spec ├── adapters │ ├── highchart │ │ ├── burnup_adapter_spec.rb │ │ ├── demands_charts_adapter_spec.rb │ │ ├── finances_charts_adapter_spec.rb │ │ ├── highchart_adapter_spec.rb │ │ ├── portfolio_charts_adapter_spec.rb │ │ ├── project_risk_charts_adapter_spec.rb │ │ ├── projects_chart_adapter_spec.rb │ │ ├── projects_consolidations_charts_adapter_spec.rb │ │ ├── strategic_charts_adapter_spec.rb │ │ ├── team_charts_adapter_spec.rb │ │ └── team_member_adapter_spec.rb │ └── jira │ │ └── jira_issue_adapter_spec.rb ├── builders │ ├── demand_block_data_builder_spec.rb │ └── demand_info_data_builder_spec.rb ├── controllers │ ├── application_controller_spec.rb │ ├── charts_controller_spec.rb │ ├── companies_controller_spec.rb │ ├── company_working_hours_configs_controller_spec.rb │ ├── contracts_controller_spec.rb │ ├── customers_controller_spec.rb │ ├── demand_blocks_controller_spec.rb │ ├── demand_efforts_controller_spec.rb │ ├── demand_score_matrices_controller_spec.rb │ ├── demand_transitions_controller_spec.rb │ ├── demands_controller_spec.rb │ ├── financial_informations_controller_spec.rb │ ├── flow_events_controller_spec.rb │ ├── graphql_controller_spec.rb │ ├── home_controller_spec.rb │ ├── item_assignments_controller_spec.rb │ ├── jira │ │ ├── jira_accounts_controller_spec.rb │ │ ├── jira_custom_field_mappings_controller_spec.rb │ │ ├── jira_product_configs_controller_spec.rb │ │ └── jira_project_configs_controller_spec.rb │ ├── memberships_controller_spec.rb │ ├── plans_controller_spec.rb │ ├── portfolio_units_controller_spec.rb │ ├── product_users_controller_spec.rb │ ├── products_controller_spec.rb │ ├── project_additional_hours_controller_spec.rb │ ├── project_risk_alerts_controller_spec.rb │ ├── project_risk_configs_controller_spec.rb │ ├── projects_controller_spec.rb │ ├── replenishing_consolidations_controller_spec.rb │ ├── risk_review_action_items_controller_spec.rb │ ├── risk_reviews_controller_spec.rb │ ├── score_matrices_controller_spec.rb │ ├── score_matrix_answers_controller_spec.rb │ ├── score_matrix_questions_controller_spec.rb │ ├── service_delivery_reviews_controller_spec.rb │ ├── slack_configurations_controller_spec.rb │ ├── stage_project_configs_controller_spec.rb │ ├── stages_controller_spec.rb │ ├── team_members_controller_spec.rb │ ├── team_resource_allocations_controller_spec.rb │ ├── team_resources_controller_spec.rb │ ├── teams_controller_spec.rb │ ├── user_company_roles_controller_spec.rb │ ├── user_plans_controller_spec.rb │ ├── users_controller_spec.rb │ └── webhook_integrations_controller_spec.rb ├── data_objects │ ├── customer_dashboard_data_spec.rb │ ├── projects_summary_data_spec.rb │ ├── replenishing_data_spec.rb │ ├── scatter_data_spec.rb │ └── stage_analytic_data_spec.rb ├── fabricators │ ├── company_fabricator.rb │ ├── company_setting_fabricator.rb │ ├── company_working_hours_config_fabricator.rb │ ├── consolidations │ │ ├── contract_consolidation_fabricator.rb │ │ ├── customer_consolidation_fabricator.rb │ │ ├── project_consolidation_fabricator.rb │ │ ├── replenishing_consolidation_fabricator.rb │ │ └── team_consolidation_fabricator.rb │ ├── contract_fabricator.rb │ ├── customer_fabricator.rb │ ├── demand_block_fabricator.rb │ ├── demand_comment_fabricator.rb │ ├── demand_effort_fabricator.rb │ ├── demand_fabricator.rb │ ├── demand_score_matrix_fabricator.rb │ ├── demand_transition_fabricator.rb │ ├── devise_customer_fabricator.rb │ ├── financial_information_fabricator.rb │ ├── flow_event_fabricator.rb │ ├── history │ │ └── class_of_service_change_history_fabricator.rb │ ├── item_assignment_fabricator.rb │ ├── jira │ │ ├── jira_account_fabricator.rb │ │ ├── jira_custom_field_mapping_fabricator.rb │ │ ├── jira_portfolio_unit_config_fabricator.rb │ │ ├── jira_product_config_fabricator.rb │ │ └── jira_project_config_fabricator.rb │ ├── membership_available_hours_history_fabricator.rb │ ├── membership_fabricator.rb │ ├── notifications │ │ └── demand_block_notification_fabricator.rb │ ├── plan_fabricator.rb │ ├── portfolio_unit_fabricator.rb │ ├── product_fabricator.rb │ ├── product_user_fabricator.rb │ ├── project_additional_hours_fabricator.rb │ ├── project_broken_wip_log_fabricator.rb │ ├── project_change_deadline_history_fabricator.rb │ ├── project_fabricator.rb │ ├── project_risk_alert_fabricator.rb │ ├── project_risk_config_fabricator.rb │ ├── risk_review_action_item_fabricator.rb │ ├── risk_review_fabricator.rb │ ├── score_matrix_answer_fabricator.rb │ ├── score_matrix_fabricator.rb │ ├── score_matrix_question_fabricator.rb │ ├── service_delivery_review_fabricator.rb │ ├── slack_configuration_fabricator.rb │ ├── stage_fabricator.rb │ ├── stage_project_config_fabricator.rb │ ├── team_fabricator.rb │ ├── team_member_fabricator.rb │ ├── team_resource_allocation_fabricator.rb │ ├── team_resource_fabricator.rb │ ├── user_company_role_fabricator.rb │ ├── user_fabricator.rb │ ├── user_invite_fabricator.rb │ ├── user_plan_fabricator.rb │ ├── user_project_role_fabricator.rb │ └── work_item_type_fabricator.rb ├── fixtures │ ├── default_image.png │ └── files │ │ ├── issue_changelog_paginated_page_one.json │ │ ├── issue_changelog_paginated_page_two.json │ │ └── issue_changelog_with_blocks.json ├── graphql │ └── types │ │ ├── mutation_type_spec.rb │ │ └── query_type_spec.rb ├── helpers │ ├── application_helper_spec.rb │ ├── date_helper_spec.rb │ ├── demand_blocks_helper_spec.rb │ ├── filter_helper_spec.rb │ └── portfolio_unit_helper_spec.rb ├── jobs │ ├── consolidations │ │ ├── contract_consolidation_job_spec.rb │ │ ├── customer_consolidation_job_spec.rb │ │ ├── project_consolidation_job_spec.rb │ │ ├── replenishing_consolidation_job_spec.rb │ │ └── team_consolidation_job_spec.rb │ ├── dashboards │ │ └── operations_dashboard_cache_job_spec.rb │ ├── jira │ │ ├── process_jira_issue_job_spec.rb │ │ └── process_jira_project_job_spec.rb │ ├── project_risk_monitor_job_spec.rb │ ├── risk_review_generator_job_spec.rb │ ├── service_delivery_review_generator_job_spec.rb │ └── slack │ │ ├── demand_slack_notifications_job_spec.rb │ │ └── slack_notifications_job_spec.rb ├── mailers │ ├── previews │ │ └── user_notifier_preview.rb │ └── user_notifier_mailer_spec.rb ├── models │ ├── company_settings_spec.rb │ ├── company_spec.rb │ ├── company_working_hours_config_spec.rb │ ├── consolidations │ │ ├── contract_consolidation_spec.rb │ │ ├── customer_consolidation_spec.rb │ │ ├── project_consolidation_spec.rb │ │ ├── replenishing_consolidation_spec.rb │ │ └── team_consolidation_spec.rb │ ├── contract_estimation_change_history_spec.rb │ ├── contract_spec.rb │ ├── customer_spec.rb │ ├── customers_devise_customer_spec.rb │ ├── customers_project_spec.rb │ ├── dashboards │ │ ├── operations_dashboard_pairing_spec.rb │ │ └── operations_dashboard_spec.rb │ ├── demand_block_spec.rb │ ├── demand_comment_spec.rb │ ├── demand_effort_spec.rb │ ├── demand_score_matrix_spec.rb │ ├── demand_spec.rb │ ├── demand_transition_spec.rb │ ├── devise_customer_spec.rb │ ├── financial_information_spec.rb │ ├── flow │ │ ├── block_flow_information_spec.rb │ │ ├── contracts_flow_information_spec.rb │ │ ├── membership_flow_information_spec.rb │ │ ├── statistics_flow_information_spec.rb │ │ ├── system_flow_information_spec.rb │ │ ├── time_flow_information_spec.rb │ │ └── work_item_flow_information_spec.rb │ ├── flow_event_spec.rb │ ├── history │ │ ├── class_of_service_change_history_spec.rb │ │ └── membership_available_hours_history_spec.rb │ ├── item_assignment_spec.rb │ ├── jira │ │ ├── jira_account_spec.rb │ │ ├── jira_api_error_spec.rb │ │ ├── jira_custom_field_mapping_spec.rb │ │ ├── jira_portfolio_unit_config_spec.rb │ │ ├── jira_product_config_spec.rb │ │ └── jira_project_config_spec.rb │ ├── membership_spec.rb │ ├── notifications │ │ └── demand_block_notification_spec.rb │ ├── plan_spec.rb │ ├── portfolio_unit_spec.rb │ ├── product_spec.rb │ ├── product_user_spec.rb │ ├── products_project_spec.rb │ ├── project_additional_hour_spec.rb │ ├── project_broken_wip_log_spec.rb │ ├── project_change_deadline_history_spec.rb │ ├── project_risk_alert_spec.rb │ ├── project_risk_config_spec.rb │ ├── project_spec.rb │ ├── risk_review_action_item_spec.rb │ ├── risk_review_spec.rb │ ├── score_matrix_answer_spec.rb │ ├── score_matrix_question_spec.rb │ ├── score_matrix_spec.rb │ ├── service_delivery_review_action_item_spec.rb │ ├── service_delivery_review_spec.rb │ ├── slack_configuration_spec.rb │ ├── stage_project_config_spec.rb │ ├── stage_spec.rb │ ├── stages_team_spec.rb │ ├── team_member_spec.rb │ ├── team_resource_allocation_spec.rb │ ├── team_resource_spec.rb │ ├── team_spec.rb │ ├── user_company_role_spec.rb │ ├── user_invite_spec.rb │ ├── user_plan_spec.rb │ ├── user_project_role_spec.rb │ ├── user_spec.rb │ └── work_item_type_spec.rb ├── readers │ └── jira │ │ └── jira_reader_spec.rb ├── repositories │ ├── demand_blocks_repository_spec.rb │ ├── demand_transitions_repository_spec.rb │ ├── demands_repository_spec.rb │ ├── memberships_repository_spec.rb │ ├── project_risk_alerts_repository_spec.rb │ ├── projects_repository_spec.rb │ └── stages_repository_spec.rb ├── services │ ├── collections_service_spec.rb │ ├── contract_service_spec.rb │ ├── demand_effort_service_spec.rb │ ├── demand_score_matrix_service_spec.rb │ ├── demand_service_spec.rb │ ├── jira │ │ └── jira_api_service_spec.rb │ ├── project_service_spec.rb │ ├── risk_review_service_spec.rb │ ├── security │ │ └── encryption_service_spec.rb │ ├── service_delivery_review_service_spec.rb │ ├── slack │ │ └── slack_notification_service_spec.rb │ ├── stats │ │ └── statistics_service_spec.rb │ ├── team_service_spec.rb │ ├── time_service_spec.rb │ ├── user_invite_service_spec.rb │ └── viagem-pato-branco-obs.txt ├── spec_helper.rb ├── support │ └── authentication_helper.rb └── uploaders │ └── flow_climate_image_uploader_spec.rb ├── test └── mailers │ └── previews │ └── passwords_mailer_preview.rb └── tmp └── .keep /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.DS_Store -------------------------------------------------------------------------------- /.annotaterb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.annotaterb.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.cursor/rules/rails_best_practices.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.cursor/rules/rails_best_practices.mdc -------------------------------------------------------------------------------- /.cursor/rules/specs_best_practices.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.cursor/rules/specs_best_practices.mdc -------------------------------------------------------------------------------- /.cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.cursorignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | cd app/spa 5 | npx lint-staged 6 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --no-profile 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | flow_climate 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.3.6 2 | -------------------------------------------------------------------------------- /.travis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.travis.config -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/Rakefile -------------------------------------------------------------------------------- /app/adapters/base_flow_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/adapters/base_flow_adapter.rb -------------------------------------------------------------------------------- /app/adapters/highchart/burnup_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/adapters/highchart/burnup_adapter.rb -------------------------------------------------------------------------------- /app/adapters/highchart/highchart_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/adapters/highchart/highchart_adapter.rb -------------------------------------------------------------------------------- /app/adapters/highchart/team_charts_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/adapters/highchart/team_charts_adapter.rb -------------------------------------------------------------------------------- /app/adapters/highchart/team_member_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/adapters/highchart/team_member_adapter.rb -------------------------------------------------------------------------------- /app/adapters/jira/jira_issue_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/adapters/jira/jira_issue_adapter.rb -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/img-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/images/img-empty.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/charts/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/bar.js -------------------------------------------------------------------------------- /app/assets/javascripts/charts/burnup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/burnup.js -------------------------------------------------------------------------------- /app/assets/javascripts/charts/column-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/column-line.js -------------------------------------------------------------------------------- /app/assets/javascripts/charts/column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/column.js -------------------------------------------------------------------------------- /app/assets/javascripts/charts/donut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/donut.js -------------------------------------------------------------------------------- /app/assets/javascripts/charts/gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/gauge.js -------------------------------------------------------------------------------- /app/assets/javascripts/charts/histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/histogram.js -------------------------------------------------------------------------------- /app/assets/javascripts/charts/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/line.js -------------------------------------------------------------------------------- /app/assets/javascripts/charts/scatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/scatter.js -------------------------------------------------------------------------------- /app/assets/javascripts/charts/speedometer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/speedometer.js -------------------------------------------------------------------------------- /app/assets/javascripts/charts/stacked_area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/stacked_area.js -------------------------------------------------------------------------------- /app/assets/javascripts/charts/word_cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/charts/word_cloud.js -------------------------------------------------------------------------------- /app/assets/javascripts/companies/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/companies/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/contracts/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/contracts/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/customers/show.js: -------------------------------------------------------------------------------- 1 | buildContractCharts(); -------------------------------------------------------------------------------- /app/assets/javascripts/demand_blocks/index.js: -------------------------------------------------------------------------------- 1 | bindBlockFormModalAction(); 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/demands/form_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/demands/form_modal.js -------------------------------------------------------------------------------- /app/assets/javascripts/demands/index.js: -------------------------------------------------------------------------------- 1 | $("#general-loader").hide(); -------------------------------------------------------------------------------- /app/assets/javascripts/demands/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/demands/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/finances/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/finances/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/flow_events/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/flow_events/edit.js -------------------------------------------------------------------------------- /app/assets/javascripts/flow_events/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/flow_events/new.js -------------------------------------------------------------------------------- /app/assets/javascripts/header/show.js: -------------------------------------------------------------------------------- 1 | new ClipboardJS('#copy_token'); 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/products/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/products/form.js -------------------------------------------------------------------------------- /app/assets/javascripts/products/show.js: -------------------------------------------------------------------------------- 1 | $('#general-loader').hide(); 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/projects/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/projects/charts.js -------------------------------------------------------------------------------- /app/assets/javascripts/projects/eventline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/projects/eventline.js -------------------------------------------------------------------------------- /app/assets/javascripts/projects/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/projects/form.js -------------------------------------------------------------------------------- /app/assets/javascripts/projects/index.js: -------------------------------------------------------------------------------- 1 | $(".col-table-details").hide(); 2 | bindSearchProjects(); 3 | -------------------------------------------------------------------------------- /app/assets/javascripts/projects/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/projects/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/replenishing_consolidations/index.js: -------------------------------------------------------------------------------- 1 | $(".col-table-details").hide(); 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/risk_reviews/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/risk_reviews/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/routes/chart_routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/routes/chart_routes.js -------------------------------------------------------------------------------- /app/assets/javascripts/routes/team_routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/routes/team_routes.js -------------------------------------------------------------------------------- /app/assets/javascripts/score_matrices/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/score_matrices/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/stages/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/stages/charts.js -------------------------------------------------------------------------------- /app/assets/javascripts/stages/form_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/stages/form_modal.js -------------------------------------------------------------------------------- /app/assets/javascripts/stages/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/stages/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/team_members/show.js: -------------------------------------------------------------------------------- 1 | buildOperationsCharts(); -------------------------------------------------------------------------------- /app/assets/javascripts/teams/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/teams/show.js -------------------------------------------------------------------------------- /app/assets/javascripts/users/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/javascripts/users/show.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/accordion.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/charts.css: -------------------------------------------------------------------------------- 1 | .flow-chart { 2 | max-height: 400px; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/dashboard.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/error_404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/error_404.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/eventline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/eventline.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/finances.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/finances.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/form.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/index.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/navbar.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/price_table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/price_table.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/show.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/show.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/tables.css -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/topnavbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/assets/stylesheets/shared/topnavbar.css -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/charts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/charts_controller.rb -------------------------------------------------------------------------------- /app/controllers/companies_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/companies_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/concerns/authentication.rb -------------------------------------------------------------------------------- /app/controllers/contracts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/contracts_controller.rb -------------------------------------------------------------------------------- /app/controllers/customers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/customers_controller.rb -------------------------------------------------------------------------------- /app/controllers/demand_blocks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/demand_blocks_controller.rb -------------------------------------------------------------------------------- /app/controllers/demand_efforts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/demand_efforts_controller.rb -------------------------------------------------------------------------------- /app/controllers/demands_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/demands_controller.rb -------------------------------------------------------------------------------- /app/controllers/demands_list_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/demands_list_controller.rb -------------------------------------------------------------------------------- /app/controllers/flow_events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/flow_events_controller.rb -------------------------------------------------------------------------------- /app/controllers/graphql_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/graphql_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/memberships_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/memberships_controller.rb -------------------------------------------------------------------------------- /app/controllers/passwords_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/passwords_controller.rb -------------------------------------------------------------------------------- /app/controllers/plans_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/plans_controller.rb -------------------------------------------------------------------------------- /app/controllers/portfolio_units_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/portfolio_units_controller.rb -------------------------------------------------------------------------------- /app/controllers/product_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/product_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/products_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/products_controller.rb -------------------------------------------------------------------------------- /app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/risk_reviews_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/risk_reviews_controller.rb -------------------------------------------------------------------------------- /app/controllers/score_matrices_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/score_matrices_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/stages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/stages_controller.rb -------------------------------------------------------------------------------- /app/controllers/team_members_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/team_members_controller.rb -------------------------------------------------------------------------------- /app/controllers/team_resources_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/team_resources_controller.rb -------------------------------------------------------------------------------- /app/controllers/teams_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/teams_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_plans_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/user_plans_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/work_item_types_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/controllers/work_item_types_controller.rb -------------------------------------------------------------------------------- /app/data_builders/demand_info_data_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/data_builders/demand_info_data_builder.rb -------------------------------------------------------------------------------- /app/data_objects/base_aggregator_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/data_objects/base_aggregator_object.rb -------------------------------------------------------------------------------- /app/data_objects/customer_dashboard_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/data_objects/customer_dashboard_data.rb -------------------------------------------------------------------------------- /app/data_objects/demand_blocks_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/data_objects/demand_blocks_list.rb -------------------------------------------------------------------------------- /app/data_objects/project_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/data_objects/project_member.rb -------------------------------------------------------------------------------- /app/data_objects/projects_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/data_objects/projects_list.rb -------------------------------------------------------------------------------- /app/data_objects/projects_summary_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/data_objects/projects_summary_data.rb -------------------------------------------------------------------------------- /app/data_objects/replenishing_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/data_objects/replenishing_data.rb -------------------------------------------------------------------------------- /app/data_objects/scatter_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/data_objects/scatter_data.rb -------------------------------------------------------------------------------- /app/data_objects/stage_analytic_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/data_objects/stage_analytic_data.rb -------------------------------------------------------------------------------- /app/graphql/flow_climate_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/flow_climate_schema.rb -------------------------------------------------------------------------------- /app/graphql/mutations/base_mutation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/mutations/base_mutation.rb -------------------------------------------------------------------------------- /app/graphql/mutations/create_demand_effort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/mutations/create_demand_effort.rb -------------------------------------------------------------------------------- /app/graphql/mutations/create_team_mutation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/mutations/create_team_mutation.rb -------------------------------------------------------------------------------- /app/graphql/mutations/delete_team_mutation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/mutations/delete_team_mutation.rb -------------------------------------------------------------------------------- /app/graphql/mutations/update_team_mutation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/mutations/update_team_mutation.rb -------------------------------------------------------------------------------- /app/graphql/types/avatar_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/avatar_type.rb -------------------------------------------------------------------------------- /app/graphql/types/base_argument.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/base_argument.rb -------------------------------------------------------------------------------- /app/graphql/types/base_connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/base_connection.rb -------------------------------------------------------------------------------- /app/graphql/types/base_edge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/base_edge.rb -------------------------------------------------------------------------------- /app/graphql/types/base_enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/base_enum.rb -------------------------------------------------------------------------------- /app/graphql/types/base_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/base_field.rb -------------------------------------------------------------------------------- /app/graphql/types/base_input_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/base_input_object.rb -------------------------------------------------------------------------------- /app/graphql/types/base_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/base_interface.rb -------------------------------------------------------------------------------- /app/graphql/types/base_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/base_object.rb -------------------------------------------------------------------------------- /app/graphql/types/base_scalar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/base_scalar.rb -------------------------------------------------------------------------------- /app/graphql/types/base_union.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/base_union.rb -------------------------------------------------------------------------------- /app/graphql/types/charts/burnup_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/charts/burnup_type.rb -------------------------------------------------------------------------------- /app/graphql/types/charts/simple_chart_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/charts/simple_chart_type.rb -------------------------------------------------------------------------------- /app/graphql/types/companies_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/companies_type.rb -------------------------------------------------------------------------------- /app/graphql/types/company_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/company_type.rb -------------------------------------------------------------------------------- /app/graphql/types/create_responses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/create_responses.rb -------------------------------------------------------------------------------- /app/graphql/types/customer_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/customer_type.rb -------------------------------------------------------------------------------- /app/graphql/types/demand_block_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/demand_block_type.rb -------------------------------------------------------------------------------- /app/graphql/types/demand_blocks_list_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/demand_blocks_list_type.rb -------------------------------------------------------------------------------- /app/graphql/types/demand_effort_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/demand_effort_type.rb -------------------------------------------------------------------------------- /app/graphql/types/demand_efforts_list_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/demand_efforts_list_type.rb -------------------------------------------------------------------------------- /app/graphql/types/demand_score_matrix_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/demand_score_matrix_type.rb -------------------------------------------------------------------------------- /app/graphql/types/demand_transition_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/demand_transition_type.rb -------------------------------------------------------------------------------- /app/graphql/types/demand_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/demand_type.rb -------------------------------------------------------------------------------- /app/graphql/types/demands_list_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/demands_list_type.rb -------------------------------------------------------------------------------- /app/graphql/types/demands_query_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/demands_query_attributes.rb -------------------------------------------------------------------------------- /app/graphql/types/enums/sort_criteria_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/enums/sort_criteria_type.rb -------------------------------------------------------------------------------- /app/graphql/types/enums/sort_direction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/enums/sort_direction.rb -------------------------------------------------------------------------------- /app/graphql/types/enums/target_quarter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/enums/target_quarter.rb -------------------------------------------------------------------------------- /app/graphql/types/enums/work_item_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/enums/work_item_level.rb -------------------------------------------------------------------------------- /app/graphql/types/flow_event_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/flow_event_type.rb -------------------------------------------------------------------------------- /app/graphql/types/item_assignment_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/item_assignment_type.rb -------------------------------------------------------------------------------- /app/graphql/types/jira_product_config_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/jira_product_config_type.rb -------------------------------------------------------------------------------- /app/graphql/types/jira_project_config_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/jira_project_config_type.rb -------------------------------------------------------------------------------- /app/graphql/types/monthly_investment_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/monthly_investment_type.rb -------------------------------------------------------------------------------- /app/graphql/types/mutation_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/mutation_type.rb -------------------------------------------------------------------------------- /app/graphql/types/node_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/node_type.rb -------------------------------------------------------------------------------- /app/graphql/types/portfolio_unit_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/portfolio_unit_type.rb -------------------------------------------------------------------------------- /app/graphql/types/product_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/product_type.rb -------------------------------------------------------------------------------- /app/graphql/types/project_member_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/project_member_type.rb -------------------------------------------------------------------------------- /app/graphql/types/project_simulation_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/project_simulation_type.rb -------------------------------------------------------------------------------- /app/graphql/types/project_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/project_type.rb -------------------------------------------------------------------------------- /app/graphql/types/projects_list_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/projects_list_type.rb -------------------------------------------------------------------------------- /app/graphql/types/query_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/query_type.rb -------------------------------------------------------------------------------- /app/graphql/types/risk_review_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/risk_review_type.rb -------------------------------------------------------------------------------- /app/graphql/types/score_matrix_answer_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/score_matrix_answer_type.rb -------------------------------------------------------------------------------- /app/graphql/types/score_matrix_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/score_matrix_type.rb -------------------------------------------------------------------------------- /app/graphql/types/stage_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/stage_type.rb -------------------------------------------------------------------------------- /app/graphql/types/teams/membership_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/teams/membership_type.rb -------------------------------------------------------------------------------- /app/graphql/types/teams/team_member_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/teams/team_member_type.rb -------------------------------------------------------------------------------- /app/graphql/types/teams/team_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/teams/team_type.rb -------------------------------------------------------------------------------- /app/graphql/types/update_responses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/update_responses.rb -------------------------------------------------------------------------------- /app/graphql/types/user_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/user_type.rb -------------------------------------------------------------------------------- /app/graphql/types/work_item_type_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/graphql/types/work_item_type_type.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/date_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/helpers/date_helper.rb -------------------------------------------------------------------------------- /app/helpers/demand_blocks_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/helpers/demand_blocks_helper.rb -------------------------------------------------------------------------------- /app/helpers/filter_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/helpers/filter_helper.rb -------------------------------------------------------------------------------- /app/helpers/portfolio_unit_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/helpers/portfolio_unit_helper.rb -------------------------------------------------------------------------------- /app/helpers/spa_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/helpers/spa_helper.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/jira/process_jira_issue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/jobs/jira/process_jira_issue_job.rb -------------------------------------------------------------------------------- /app/jobs/jira/process_jira_project_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/jobs/jira/process_jira_project_job.rb -------------------------------------------------------------------------------- /app/jobs/project_risk_monitor_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/jobs/project_risk_monitor_job.rb -------------------------------------------------------------------------------- /app/jobs/risk_review_generator_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/jobs/risk_review_generator_job.rb -------------------------------------------------------------------------------- /app/jobs/slack/slack_notifications_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/jobs/slack/slack_notifications_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/passwords_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/mailers/passwords_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_notifier_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/mailers/user_notifier_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/company.rb -------------------------------------------------------------------------------- /app/models/company_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/company_settings.rb -------------------------------------------------------------------------------- /app/models/company_working_hours_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/company_working_hours_config.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/demandable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/concerns/demandable.rb -------------------------------------------------------------------------------- /app/models/contract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/contract.rb -------------------------------------------------------------------------------- /app/models/current.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/current.rb -------------------------------------------------------------------------------- /app/models/customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/customer.rb -------------------------------------------------------------------------------- /app/models/customers_devise_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/customers_devise_customer.rb -------------------------------------------------------------------------------- /app/models/customers_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/customers_project.rb -------------------------------------------------------------------------------- /app/models/dashboards/operations_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/dashboards/operations_dashboard.rb -------------------------------------------------------------------------------- /app/models/demand.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/demand.rb -------------------------------------------------------------------------------- /app/models/demand_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/demand_block.rb -------------------------------------------------------------------------------- /app/models/demand_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/demand_comment.rb -------------------------------------------------------------------------------- /app/models/demand_effort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/demand_effort.rb -------------------------------------------------------------------------------- /app/models/demand_score_matrix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/demand_score_matrix.rb -------------------------------------------------------------------------------- /app/models/demand_transition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/demand_transition.rb -------------------------------------------------------------------------------- /app/models/devise_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/devise_customer.rb -------------------------------------------------------------------------------- /app/models/financial_information.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/financial_information.rb -------------------------------------------------------------------------------- /app/models/flow/block_flow_information.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/flow/block_flow_information.rb -------------------------------------------------------------------------------- /app/models/flow/contracts_flow_information.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/flow/contracts_flow_information.rb -------------------------------------------------------------------------------- /app/models/flow/system_flow_information.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/flow/system_flow_information.rb -------------------------------------------------------------------------------- /app/models/flow/time_flow_information.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/flow/time_flow_information.rb -------------------------------------------------------------------------------- /app/models/flow/work_item_flow_information.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/flow/work_item_flow_information.rb -------------------------------------------------------------------------------- /app/models/flow_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/flow_event.rb -------------------------------------------------------------------------------- /app/models/item_assignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/item_assignment.rb -------------------------------------------------------------------------------- /app/models/jira/jira_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/jira/jira_account.rb -------------------------------------------------------------------------------- /app/models/jira/jira_api_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/jira/jira_api_error.rb -------------------------------------------------------------------------------- /app/models/jira/jira_custom_field_mapping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/jira/jira_custom_field_mapping.rb -------------------------------------------------------------------------------- /app/models/jira/jira_portfolio_unit_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/jira/jira_portfolio_unit_config.rb -------------------------------------------------------------------------------- /app/models/jira/jira_product_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/jira/jira_product_config.rb -------------------------------------------------------------------------------- /app/models/jira/jira_project_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/jira/jira_project_config.rb -------------------------------------------------------------------------------- /app/models/membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/membership.rb -------------------------------------------------------------------------------- /app/models/plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/plan.rb -------------------------------------------------------------------------------- /app/models/portfolio_unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/portfolio_unit.rb -------------------------------------------------------------------------------- /app/models/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/product.rb -------------------------------------------------------------------------------- /app/models/product_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/product_user.rb -------------------------------------------------------------------------------- /app/models/products_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/products_project.rb -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/project_additional_hour.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/project_additional_hour.rb -------------------------------------------------------------------------------- /app/models/project_broken_wip_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/project_broken_wip_log.rb -------------------------------------------------------------------------------- /app/models/project_change_deadline_history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/project_change_deadline_history.rb -------------------------------------------------------------------------------- /app/models/project_risk_alert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/project_risk_alert.rb -------------------------------------------------------------------------------- /app/models/project_risk_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/project_risk_config.rb -------------------------------------------------------------------------------- /app/models/risk_review.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/risk_review.rb -------------------------------------------------------------------------------- /app/models/risk_review_action_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/risk_review_action_item.rb -------------------------------------------------------------------------------- /app/models/score_matrix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/score_matrix.rb -------------------------------------------------------------------------------- /app/models/score_matrix_answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/score_matrix_answer.rb -------------------------------------------------------------------------------- /app/models/score_matrix_question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/score_matrix_question.rb -------------------------------------------------------------------------------- /app/models/service_delivery_review.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/service_delivery_review.rb -------------------------------------------------------------------------------- /app/models/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/session.rb -------------------------------------------------------------------------------- /app/models/slack_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/slack_configuration.rb -------------------------------------------------------------------------------- /app/models/stage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/stage.rb -------------------------------------------------------------------------------- /app/models/stage_project_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/stage_project_config.rb -------------------------------------------------------------------------------- /app/models/stages_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/stages_team.rb -------------------------------------------------------------------------------- /app/models/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/team.rb -------------------------------------------------------------------------------- /app/models/team_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/team_member.rb -------------------------------------------------------------------------------- /app/models/team_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/team_resource.rb -------------------------------------------------------------------------------- /app/models/team_resource_allocation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/team_resource_allocation.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_company_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/user_company_role.rb -------------------------------------------------------------------------------- /app/models/user_invite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/user_invite.rb -------------------------------------------------------------------------------- /app/models/user_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/user_plan.rb -------------------------------------------------------------------------------- /app/models/user_project_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/user_project_role.rb -------------------------------------------------------------------------------- /app/models/work_item_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/models/work_item_type.rb -------------------------------------------------------------------------------- /app/readers/jira/jira_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/readers/jira/jira_reader.rb -------------------------------------------------------------------------------- /app/repositories/demand_blocks_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/repositories/demand_blocks_repository.rb -------------------------------------------------------------------------------- /app/repositories/demands_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/repositories/demands_repository.rb -------------------------------------------------------------------------------- /app/repositories/memberships_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/repositories/memberships_repository.rb -------------------------------------------------------------------------------- /app/repositories/projects_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/repositories/projects_repository.rb -------------------------------------------------------------------------------- /app/repositories/stages_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/repositories/stages_repository.rb -------------------------------------------------------------------------------- /app/services/collections_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/collections_service.rb -------------------------------------------------------------------------------- /app/services/contract_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/contract_service.rb -------------------------------------------------------------------------------- /app/services/demand_effort_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/demand_effort_service.rb -------------------------------------------------------------------------------- /app/services/demand_score_matrix_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/demand_score_matrix_service.rb -------------------------------------------------------------------------------- /app/services/demand_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/demand_service.rb -------------------------------------------------------------------------------- /app/services/jira/jira_api_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/jira/jira_api_service.rb -------------------------------------------------------------------------------- /app/services/project_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/project_service.rb -------------------------------------------------------------------------------- /app/services/risk_review_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/risk_review_service.rb -------------------------------------------------------------------------------- /app/services/security/encryption_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/security/encryption_service.rb -------------------------------------------------------------------------------- /app/services/stats/statistics_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/stats/statistics_service.rb -------------------------------------------------------------------------------- /app/services/team_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/team_service.rb -------------------------------------------------------------------------------- /app/services/time_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/time_service.rb -------------------------------------------------------------------------------- /app/services/user_invite_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/services/user_invite_service.rb -------------------------------------------------------------------------------- /app/spa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/.gitignore -------------------------------------------------------------------------------- /app/spa/.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /app/spa/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/.prettierrc -------------------------------------------------------------------------------- /app/spa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/README.md -------------------------------------------------------------------------------- /app/spa/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/package-lock.json -------------------------------------------------------------------------------- /app/spa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/package.json -------------------------------------------------------------------------------- /app/spa/public/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/public/default.png -------------------------------------------------------------------------------- /app/spa/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/public/favicon.ico -------------------------------------------------------------------------------- /app/spa/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/public/index.html -------------------------------------------------------------------------------- /app/spa/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/public/logo192.png -------------------------------------------------------------------------------- /app/spa/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/public/logo512.png -------------------------------------------------------------------------------- /app/spa/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/public/manifest.json -------------------------------------------------------------------------------- /app/spa/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/public/robots.txt -------------------------------------------------------------------------------- /app/spa/public/taller_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/public/taller_logo.png -------------------------------------------------------------------------------- /app/spa/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/App.tsx -------------------------------------------------------------------------------- /app/spa/src/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/Routes.tsx -------------------------------------------------------------------------------- /app/spa/src/amplitude/amplitudeEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/amplitude/amplitudeEvents.ts -------------------------------------------------------------------------------- /app/spa/src/components/BasicPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/BasicPage.tsx -------------------------------------------------------------------------------- /app/spa/src/components/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/Breadcrumbs.tsx -------------------------------------------------------------------------------- /app/spa/src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/Card.tsx -------------------------------------------------------------------------------- /app/spa/src/components/DemandsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/DemandsPage.tsx -------------------------------------------------------------------------------- /app/spa/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/Footer.tsx -------------------------------------------------------------------------------- /app/spa/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/Header.tsx -------------------------------------------------------------------------------- /app/spa/src/components/MessagesBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/MessagesBox.tsx -------------------------------------------------------------------------------- /app/spa/src/components/ReadMoreButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/ReadMoreButton.tsx -------------------------------------------------------------------------------- /app/spa/src/components/TabPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/TabPanel.tsx -------------------------------------------------------------------------------- /app/spa/src/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/Tabs.tsx -------------------------------------------------------------------------------- /app/spa/src/components/Ticket.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/Ticket.tsx -------------------------------------------------------------------------------- /app/spa/src/components/TicketGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/TicketGroup.tsx -------------------------------------------------------------------------------- /app/spa/src/components/charts/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/charts/BarChart.tsx -------------------------------------------------------------------------------- /app/spa/src/components/charts/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/charts/LineChart.tsx -------------------------------------------------------------------------------- /app/spa/src/components/charts/PieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/charts/PieChart.tsx -------------------------------------------------------------------------------- /app/spa/src/components/menu/ActionMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/menu/ActionMenu.tsx -------------------------------------------------------------------------------- /app/spa/src/components/ui/DateLocale.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/ui/DateLocale.tsx -------------------------------------------------------------------------------- /app/spa/src/components/ui/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/ui/Form.tsx -------------------------------------------------------------------------------- /app/spa/src/components/ui/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/components/ui/Table.tsx -------------------------------------------------------------------------------- /app/spa/src/contexts/MeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/contexts/MeContext.tsx -------------------------------------------------------------------------------- /app/spa/src/contexts/MessageContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/contexts/MessageContext.tsx -------------------------------------------------------------------------------- /app/spa/src/hooks/useMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/hooks/useMessages.tsx -------------------------------------------------------------------------------- /app/spa/src/hooks/useProductQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/hooks/useProductQuery.ts -------------------------------------------------------------------------------- /app/spa/src/hooks/useProjectInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/hooks/useProjectInfo.ts -------------------------------------------------------------------------------- /app/spa/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/index.tsx -------------------------------------------------------------------------------- /app/spa/src/lib/ApiProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/lib/ApiProvider.tsx -------------------------------------------------------------------------------- /app/spa/src/lib/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/lib/ThemeProvider.tsx -------------------------------------------------------------------------------- /app/spa/src/lib/__tests__/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/lib/__tests__/currency.ts -------------------------------------------------------------------------------- /app/spa/src/lib/__tests__/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/lib/__tests__/date.ts -------------------------------------------------------------------------------- /app/spa/src/lib/charts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/lib/charts.ts -------------------------------------------------------------------------------- /app/spa/src/lib/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/lib/currency.ts -------------------------------------------------------------------------------- /app/spa/src/lib/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/lib/date.ts -------------------------------------------------------------------------------- /app/spa/src/lib/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/lib/i18n.ts -------------------------------------------------------------------------------- /app/spa/src/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/common.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/customer.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/demand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/demand.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/demandEffort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/demandEffort.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/header.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/jiraProjectConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/jiraProjectConfig.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/membership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/membership.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/products.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/projectChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/projectChart.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/projects.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/riskReview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/riskReview.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/statusReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/statusReport.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/teamMembers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/teamMembers.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/teams.json -------------------------------------------------------------------------------- /app/spa/src/locales/en/workItemTypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/en/workItemTypes.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/common.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/customer.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/demand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/demand.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/demandEffort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/demandEffort.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/header.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/jiraProjectConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/jiraProjectConfig.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/membership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/membership.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/products.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/projectChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/projectChart.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/projects.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/riskReview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/riskReview.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/statusReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/statusReport.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/teamMembers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/teamMembers.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/teams.json -------------------------------------------------------------------------------- /app/spa/src/locales/pt/workItemTypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/locales/pt/workItemTypes.json -------------------------------------------------------------------------------- /app/spa/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/logo.svg -------------------------------------------------------------------------------- /app/spa/src/modules/charts/charts.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/modules/charts/charts.types.ts -------------------------------------------------------------------------------- /app/spa/src/modules/company/company.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/modules/company/company.types.ts -------------------------------------------------------------------------------- /app/spa/src/modules/demand/demand.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/modules/demand/demand.types.ts -------------------------------------------------------------------------------- /app/spa/src/modules/product/product.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/modules/product/product.types.ts -------------------------------------------------------------------------------- /app/spa/src/modules/project/project.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/modules/project/project.types.ts -------------------------------------------------------------------------------- /app/spa/src/modules/stage/stage.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/modules/stage/stage.types.ts -------------------------------------------------------------------------------- /app/spa/src/modules/team/team.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/modules/team/team.types.ts -------------------------------------------------------------------------------- /app/spa/src/modules/user/user.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/modules/user/user.types.ts -------------------------------------------------------------------------------- /app/spa/src/pages/Customer/CustomerDemand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Customer/CustomerDemand.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Demand/DemandEfforts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Demand/DemandEfforts.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Demand/DemandsCharts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Demand/DemandsCharts.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Demand/DemandsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Demand/DemandsList.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Products/ProductPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Products/ProductPage.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Projects/DemandsCharts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Projects/DemandsCharts.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Projects/Project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Projects/Project.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Projects/ProjectsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Projects/ProjectsPage.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Projects/RiskDrill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Projects/RiskDrill.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Projects/Statistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Projects/Statistics.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Projects/StatusReport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Projects/StatusReport.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/TeamMembers/TeamMembers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/TeamMembers/TeamMembers.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Teams/CreateTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Teams/CreateTeam.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Teams/EditTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Teams/EditTeam.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Teams/MemberGeneralInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Teams/MemberGeneralInfo.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Teams/MembershipForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Teams/MembershipForm.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Teams/MembershipsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Teams/MembershipsTable.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Teams/Replenishing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Teams/Replenishing.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Teams/TeamDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Teams/TeamDashboard.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Teams/Teams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Teams/Teams.tsx -------------------------------------------------------------------------------- /app/spa/src/pages/Users/ManagerDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/pages/Users/ManagerDashboard.tsx -------------------------------------------------------------------------------- /app/spa/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /app/spa/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/reportWebVitals.ts -------------------------------------------------------------------------------- /app/spa/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/setupTests.ts -------------------------------------------------------------------------------- /app/spa/src/utils/charts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/utils/charts.ts -------------------------------------------------------------------------------- /app/spa/src/utils/formatRelativeDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/src/utils/formatRelativeDate.ts -------------------------------------------------------------------------------- /app/spa/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/spa/tsconfig.json -------------------------------------------------------------------------------- /app/uploaders/flow_climate_image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/uploaders/flow_climate_image_uploader.rb -------------------------------------------------------------------------------- /app/views/charts/_aging_by_project.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/charts/_aging_by_project.html.erb -------------------------------------------------------------------------------- /app/views/charts/_chart_stats_body.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/charts/_chart_stats_body.html.erb -------------------------------------------------------------------------------- /app/views/charts/_portfolio_charts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/charts/_portfolio_charts.html.erb -------------------------------------------------------------------------------- /app/views/charts/_statistics_charts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/charts/_statistics_charts.html.erb -------------------------------------------------------------------------------- /app/views/charts/_strategic_charts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/charts/_strategic_charts.html.erb -------------------------------------------------------------------------------- /app/views/charts/_timeline.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/charts/_timeline.html.erb -------------------------------------------------------------------------------- /app/views/charts/strategic_charts.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/charts/strategic_charts.js.erb -------------------------------------------------------------------------------- /app/views/companies/_companies_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/companies/_companies_table.html.erb -------------------------------------------------------------------------------- /app/views/companies/_company_stamps.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/companies/_company_stamps.html.erb -------------------------------------------------------------------------------- /app/views/companies/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/companies/_form.html.erb -------------------------------------------------------------------------------- /app/views/companies/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/companies/edit.html.erb -------------------------------------------------------------------------------- /app/views/companies/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/companies/index.html.erb -------------------------------------------------------------------------------- /app/views/companies/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/companies/new.html.erb -------------------------------------------------------------------------------- /app/views/companies/risks_tab.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/companies/risks_tab.js.erb -------------------------------------------------------------------------------- /app/views/companies/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/companies/show.html.erb -------------------------------------------------------------------------------- /app/views/companies/update_settings.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/companies/update_settings.js.erb -------------------------------------------------------------------------------- /app/views/contracts/_contracts_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/contracts/_contracts_table.html.erb -------------------------------------------------------------------------------- /app/views/contracts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/contracts/_form.html.erb -------------------------------------------------------------------------------- /app/views/contracts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/contracts/edit.html.erb -------------------------------------------------------------------------------- /app/views/contracts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/contracts/new.html.erb -------------------------------------------------------------------------------- /app/views/contracts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/contracts/show.html.erb -------------------------------------------------------------------------------- /app/views/customers/_customer_stamps.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/customers/_customer_stamps.html.erb -------------------------------------------------------------------------------- /app/views/customers/_customers_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/customers/_customers_table.html.erb -------------------------------------------------------------------------------- /app/views/customers/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/customers/_form.html.erb -------------------------------------------------------------------------------- /app/views/customers/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/customers/edit.html.erb -------------------------------------------------------------------------------- /app/views/customers/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/customers/index.html.erb -------------------------------------------------------------------------------- /app/views/customers/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/customers/new.html.erb -------------------------------------------------------------------------------- /app/views/customers/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/customers/show.html.erb -------------------------------------------------------------------------------- /app/views/demand_blocks/_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_blocks/_edit.html.erb -------------------------------------------------------------------------------- /app/views/demand_blocks/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_blocks/_form.html.erb -------------------------------------------------------------------------------- /app/views/demand_blocks/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_blocks/edit.html.erb -------------------------------------------------------------------------------- /app/views/demand_blocks/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_blocks/edit.js.erb -------------------------------------------------------------------------------- /app/views/demand_blocks/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_blocks/index.html.erb -------------------------------------------------------------------------------- /app/views/demand_blocks/update.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_blocks/update.js.erb -------------------------------------------------------------------------------- /app/views/demand_efforts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_efforts/edit.html.erb -------------------------------------------------------------------------------- /app/views/demand_transitions/_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_transitions/_edit.html.erb -------------------------------------------------------------------------------- /app/views/demand_transitions/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_transitions/_form.html.erb -------------------------------------------------------------------------------- /app/views/demand_transitions/_new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_transitions/_new.html.erb -------------------------------------------------------------------------------- /app/views/demand_transitions/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_transitions/create.js.erb -------------------------------------------------------------------------------- /app/views/demand_transitions/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_transitions/edit.js.erb -------------------------------------------------------------------------------- /app/views/demand_transitions/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_transitions/new.js.erb -------------------------------------------------------------------------------- /app/views/demand_transitions/update.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demand_transitions/update.js.erb -------------------------------------------------------------------------------- /app/views/demands/_demand_actions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/_demand_actions.html.erb -------------------------------------------------------------------------------- /app/views/demands/_demand_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/_demand_fields.html.erb -------------------------------------------------------------------------------- /app/views/demands/_demand_stamps.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/_demand_stamps.html.erb -------------------------------------------------------------------------------- /app/views/demands/_demands_charts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/_demands_charts.html.erb -------------------------------------------------------------------------------- /app/views/demands/_demands_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/_demands_table.html.erb -------------------------------------------------------------------------------- /app/views/demands/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/_form.html.erb -------------------------------------------------------------------------------- /app/views/demands/_general_info.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/_general_info.html.erb -------------------------------------------------------------------------------- /app/views/demands/_unscored_demands.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/_unscored_demands.html.erb -------------------------------------------------------------------------------- /app/views/demands/destroy_physically.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/destroy_physically.js.erb -------------------------------------------------------------------------------- /app/views/demands/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/edit.html.erb -------------------------------------------------------------------------------- /app/views/demands/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/index.html.erb -------------------------------------------------------------------------------- /app/views/demands/score_matrix/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/score_matrix/_form.html.erb -------------------------------------------------------------------------------- /app/views/demands/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/show.html.erb -------------------------------------------------------------------------------- /app/views/demands/update.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/demands/update.js.erb -------------------------------------------------------------------------------- /app/views/financial_informations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/financial_informations/new.html.erb -------------------------------------------------------------------------------- /app/views/flow_events/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/flow_events/_form.html.erb -------------------------------------------------------------------------------- /app/views/flow_events/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/flow_events/destroy.js.erb -------------------------------------------------------------------------------- /app/views/flow_events/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/flow_events/edit.html.erb -------------------------------------------------------------------------------- /app/views/flow_events/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/flow_events/index.html.erb -------------------------------------------------------------------------------- /app/views/flow_events/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/flow_events/new.html.erb -------------------------------------------------------------------------------- /app/views/flow_events/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/flow_events/show.html.erb -------------------------------------------------------------------------------- /app/views/home/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/home/show.html.erb -------------------------------------------------------------------------------- /app/views/item_assignments/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/item_assignments/destroy.js.erb -------------------------------------------------------------------------------- /app/views/jira/jira_accounts/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/jira/jira_accounts/destroy.js.erb -------------------------------------------------------------------------------- /app/views/jira/jira_accounts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/jira/jira_accounts/new.html.erb -------------------------------------------------------------------------------- /app/views/jira/jira_accounts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/jira/jira_accounts/show.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/kaminari/_first_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/kaminari/_gap.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/kaminari/_last_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/kaminari/_next_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/kaminari/_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/kaminari/_paginator.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/kaminari/_prev_page.html.erb -------------------------------------------------------------------------------- /app/views/layouts/404.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/404.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_alert.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/_alert.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/_error.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/_header.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_header_menu.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/_header_menu.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_load_spinner.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/_load_spinner.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_no_data.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/_no_data.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_notice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/_notice.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_user_header_menu.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/_user_header_menu.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/passwords_mailer/reset.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/passwords_mailer/reset.html.erb -------------------------------------------------------------------------------- /app/views/passwords_mailer/reset.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/passwords_mailer/reset.text.erb -------------------------------------------------------------------------------- /app/views/plans/no_plan.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/plans/no_plan.html.erb -------------------------------------------------------------------------------- /app/views/portfolio_units/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/portfolio_units/_form.html.erb -------------------------------------------------------------------------------- /app/views/portfolio_units/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/portfolio_units/edit.html.erb -------------------------------------------------------------------------------- /app/views/portfolio_units/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/portfolio_units/show.html.erb -------------------------------------------------------------------------------- /app/views/portfolio_units/update.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/portfolio_units/update.js.erb -------------------------------------------------------------------------------- /app/views/products/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/products/_form.html.erb -------------------------------------------------------------------------------- /app/views/products/_product_settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/products/_product_settings.html.erb -------------------------------------------------------------------------------- /app/views/products/_product_stamps.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/products/_product_stamps.html.erb -------------------------------------------------------------------------------- /app/views/products/_product_tree.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/products/_product_tree.html.erb -------------------------------------------------------------------------------- /app/views/products/_products_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/products/_products_table.html.erb -------------------------------------------------------------------------------- /app/views/products/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/products/edit.html.erb -------------------------------------------------------------------------------- /app/views/products/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/products/index.html.erb -------------------------------------------------------------------------------- /app/views/products/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/products/new.html.erb -------------------------------------------------------------------------------- /app/views/products/products.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/products/products.js.erb -------------------------------------------------------------------------------- /app/views/products/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/products/show.html.erb -------------------------------------------------------------------------------- /app/views/project_risk_alerts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/project_risk_alerts/index.html.erb -------------------------------------------------------------------------------- /app/views/project_risk_configs/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/project_risk_configs/_form.html.erb -------------------------------------------------------------------------------- /app/views/project_risk_configs/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/project_risk_configs/new.html.erb -------------------------------------------------------------------------------- /app/views/projects/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/projects/_form.html.erb -------------------------------------------------------------------------------- /app/views/projects/_project_actions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/projects/_project_actions.html.erb -------------------------------------------------------------------------------- /app/views/projects/_projects_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/projects/_projects_table.html.erb -------------------------------------------------------------------------------- /app/views/projects/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/projects/edit.html.erb -------------------------------------------------------------------------------- /app/views/projects/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/projects/new.html.erb -------------------------------------------------------------------------------- /app/views/projects/projects_tab.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/projects/projects_tab.js.erb -------------------------------------------------------------------------------- /app/views/risk_review_action_items/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/risk_review_action_items/new.js.erb -------------------------------------------------------------------------------- /app/views/risk_reviews/_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/risk_reviews/_edit.html.erb -------------------------------------------------------------------------------- /app/views/risk_reviews/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/risk_reviews/_form.html.erb -------------------------------------------------------------------------------- /app/views/risk_reviews/_new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/risk_reviews/_new.html.erb -------------------------------------------------------------------------------- /app/views/risk_reviews/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/risk_reviews/create.js.erb -------------------------------------------------------------------------------- /app/views/risk_reviews/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/risk_reviews/destroy.js.erb -------------------------------------------------------------------------------- /app/views/risk_reviews/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/risk_reviews/edit.js.erb -------------------------------------------------------------------------------- /app/views/risk_reviews/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/risk_reviews/new.js.erb -------------------------------------------------------------------------------- /app/views/risk_reviews/update.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/risk_reviews/update.js.erb -------------------------------------------------------------------------------- /app/views/score_matrices/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/score_matrices/show.html.erb -------------------------------------------------------------------------------- /app/views/score_matrix_answers/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/score_matrix_answers/create.js.erb -------------------------------------------------------------------------------- /app/views/score_matrix_answers/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/score_matrix_answers/destroy.js.erb -------------------------------------------------------------------------------- /app/views/score_matrix_questions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/score_matrix_questions/new.html.erb -------------------------------------------------------------------------------- /app/views/service_delivery_review_action_items/destroy.js.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/slack_configurations/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/slack_configurations/_form.html.erb -------------------------------------------------------------------------------- /app/views/slack_configurations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/slack_configurations/edit.html.erb -------------------------------------------------------------------------------- /app/views/slack_configurations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/slack_configurations/index.html.erb -------------------------------------------------------------------------------- /app/views/slack_configurations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/slack_configurations/new.html.erb -------------------------------------------------------------------------------- /app/views/stage_project_configs/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/stage_project_configs/edit.html.erb -------------------------------------------------------------------------------- /app/views/stages/_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/stages/_edit.html.erb -------------------------------------------------------------------------------- /app/views/stages/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/stages/_form.html.erb -------------------------------------------------------------------------------- /app/views/stages/_stage_charts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/stages/_stage_charts.html.erb -------------------------------------------------------------------------------- /app/views/stages/_stage_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/stages/_stage_fields.html.erb -------------------------------------------------------------------------------- /app/views/stages/_stage_transitions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/stages/_stage_transitions.html.erb -------------------------------------------------------------------------------- /app/views/stages/_stages_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/stages/_stages_table.html.erb -------------------------------------------------------------------------------- /app/views/stages/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/stages/edit.js.erb -------------------------------------------------------------------------------- /app/views/stages/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/stages/new.html.erb -------------------------------------------------------------------------------- /app/views/stages/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/stages/show.html.erb -------------------------------------------------------------------------------- /app/views/stages/update.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/stages/update.js.erb -------------------------------------------------------------------------------- /app/views/team_resources/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/team_resources/_form.html.erb -------------------------------------------------------------------------------- /app/views/team_resources/_new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/team_resources/_new.html.erb -------------------------------------------------------------------------------- /app/views/team_resources/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/team_resources/create.js.erb -------------------------------------------------------------------------------- /app/views/team_resources/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/team_resources/destroy.js.erb -------------------------------------------------------------------------------- /app/views/team_resources/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/team_resources/new.js.erb -------------------------------------------------------------------------------- /app/views/teams/_team_menu.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/teams/_team_menu.html.erb -------------------------------------------------------------------------------- /app/views/teams/_team_projects_tab.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/teams/_team_projects_tab.html.erb -------------------------------------------------------------------------------- /app/views/teams/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/teams/show.html.erb -------------------------------------------------------------------------------- /app/views/teams/team_projects_tab.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/teams/team_projects_tab.js.erb -------------------------------------------------------------------------------- /app/views/user_company_roles/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/user_company_roles/_form.html.erb -------------------------------------------------------------------------------- /app/views/user_company_roles/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/user_company_roles/edit.html.erb -------------------------------------------------------------------------------- /app/views/user_company_roles/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/user_company_roles/new.html.erb -------------------------------------------------------------------------------- /app/views/user_plans/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/user_plans/index.html.erb -------------------------------------------------------------------------------- /app/views/users/_company_info.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/users/_company_info.html.erb -------------------------------------------------------------------------------- /app/views/users/_manager_dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/users/_manager_dashboard.html.erb -------------------------------------------------------------------------------- /app/views/users/_user_plans_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/users/_user_plans_table.html.erb -------------------------------------------------------------------------------- /app/views/users/_users_short_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/users/_users_short_table.html.erb -------------------------------------------------------------------------------- /app/views/users/_users_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/users/_users_table.html.erb -------------------------------------------------------------------------------- /app/views/users/admin_dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/users/admin_dashboard.html.erb -------------------------------------------------------------------------------- /app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/reload_notifications.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/users/reload_notifications.js.erb -------------------------------------------------------------------------------- /app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/app/views/users/show.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/application.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/application.yml.example -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/environments/staging.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/carrierwave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/carrierwave.rb -------------------------------------------------------------------------------- /config/initializers/cloudinary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/cloudinary.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/friendly_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/friendly_id.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/rack_profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/rack_profiler.rb -------------------------------------------------------------------------------- /config/initializers/rollbar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/rollbar.rb -------------------------------------------------------------------------------- /config/initializers/sendgrid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/sendgrid.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/action_mailer.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/action_mailer.en.yml -------------------------------------------------------------------------------- /config/locales/action_mailer.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/action_mailer.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/active_model.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/active_model.en.yml -------------------------------------------------------------------------------- /config/locales/active_model.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/active_model.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/api.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/api.en.yml -------------------------------------------------------------------------------- /config/locales/api.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/api.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/controllers.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/controllers.en.yml -------------------------------------------------------------------------------- /config/locales/controllers.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/controllers.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/devise.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/devise.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/locales/pt-BR.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/rails_best_practices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/rails_best_practices.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/config/spring.rb -------------------------------------------------------------------------------- /db/migrate/20180111170136_create_companies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20180111170136_create_companies.rb -------------------------------------------------------------------------------- /db/migrate/20180111232828_create_customers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20180111232828_create_customers.rb -------------------------------------------------------------------------------- /db/migrate/20180111234624_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20180111234624_create_projects.rb -------------------------------------------------------------------------------- /db/migrate/20180115152551_create_teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20180115152551_create_teams.rb -------------------------------------------------------------------------------- /db/migrate/20180117150255_create_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20180117150255_create_products.rb -------------------------------------------------------------------------------- /db/migrate/20180126155811_create_demands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20180126155811_create_demands.rb -------------------------------------------------------------------------------- /db/migrate/20180223211920_create_stages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20180223211920_create_stages.rb -------------------------------------------------------------------------------- /db/migrate/20181210193253_create_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20181210193253_create_plan.rb -------------------------------------------------------------------------------- /db/migrate/20200504193716_create_contracts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20200504193716_create_contracts.rb -------------------------------------------------------------------------------- /db/migrate/20220125153405_create_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20220125153405_create_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20241127151940_drop_table_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20241127151940_drop_table_task.rb -------------------------------------------------------------------------------- /db/migrate/20241127161643_drop_initiatives.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20241127161643_drop_initiatives.rb -------------------------------------------------------------------------------- /db/migrate/20241128032149_add_role_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20241128032149_add_role_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20241206200836_make.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/migrate/20241206200836_make.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/db/structure.sql -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /knapsack_rspec_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/knapsack_rspec_report.json -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/add_transition_time_values.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/lib/tasks/add_transition_time_values.rake -------------------------------------------------------------------------------- /lib/tasks/annotate_rb.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/lib/tasks/annotate_rb.rake -------------------------------------------------------------------------------- /lib/tasks/consolidate_flows.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/lib/tasks/consolidate_flows.rake -------------------------------------------------------------------------------- /lib/tasks/contracts.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/lib/tasks/contracts.rake -------------------------------------------------------------------------------- /lib/tasks/counter_cache.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/lib/tasks/counter_cache.rake -------------------------------------------------------------------------------- /lib/tasks/create_legacy_notifications.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/lib/tasks/create_legacy_notifications.rake -------------------------------------------------------------------------------- /lib/tasks/dashboards_cache_generator.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/lib/tasks/dashboards_cache_generator.rake -------------------------------------------------------------------------------- /lib/tasks/notifications.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/lib/tasks/notifications.rake -------------------------------------------------------------------------------- /lib/tasks/plans.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/lib/tasks/plans.rake -------------------------------------------------------------------------------- /lib/tasks/update_item_assignments.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/lib/tasks/update_item_assignments.rake -------------------------------------------------------------------------------- /lib/tasks/update_jira_projects.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/lib/tasks/update_jira_projects.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/package.json -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/customers/show-ff14c52d51cd30a5bc83be51484fd453b1fbd597adf46b733c30b06606c98772.js: -------------------------------------------------------------------------------- 1 | buildContractCharts(); 2 | -------------------------------------------------------------------------------- /public/assets/demand_blocks/index-27ea2e17aa64611dccb531e82a768d1f09b9cd660694ac2df6822ea5724d25f4.js: -------------------------------------------------------------------------------- 1 | bindBlockFormModalAction(); 2 | -------------------------------------------------------------------------------- /public/assets/demands/index-70224ee49639ec6126483c9a6e397fd5e08b10b7a6a3d480018b5ae4f5c2f7c9.js: -------------------------------------------------------------------------------- 1 | $("#general-loader").hide(); 2 | -------------------------------------------------------------------------------- /public/assets/header/show-999237be1ae132de7a27ff0eb3a772f80bdcd53568ad6d9c855dc58316404702.js: -------------------------------------------------------------------------------- 1 | new ClipboardJS('#copy_token'); 2 | -------------------------------------------------------------------------------- /public/assets/header/show-d79909b201629f9f3fc00daff32c898dd4ce2c59c688796f78e61166ffa04ec9.js: -------------------------------------------------------------------------------- 1 | new ClipboardJS('#copy_token'); 2 | -------------------------------------------------------------------------------- /public/assets/header/show-deeca73af18bdd794228be6962471e08cfba160ab6e21b37a9da5fc391a71b69.js: -------------------------------------------------------------------------------- 1 | new ClipboardJS('#copy_token'); 2 | -------------------------------------------------------------------------------- /public/assets/manifest-2f0ac84ec540eb753a59078be1e78cb9bb00e12a9a8d6d826039a818a0008610.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/manifest-9a8eb904a98d0b7c93b4217408069b438077b8002f48f09f6cdcb8d938db0420.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/manifest-e761884522a9ca2dac475b68bac1946c990fb9af8b676d3b6b45692a920c8d04.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/products/show-7a9cbd005aa5a010bb328eff9bd756bcf8e86515b86695420269dcd822761abf.js: -------------------------------------------------------------------------------- 1 | $('#general-loader').hide(); 2 | -------------------------------------------------------------------------------- /public/assets/products/show-bc937e458fb30b0c25f4a13e776100efd6b2e3d0baca51ae3cfc4f6e89a7798c.js: -------------------------------------------------------------------------------- 1 | $('#general-loader').hide(); 2 | -------------------------------------------------------------------------------- /public/assets/products/show-c2cb6fa2d764ad952ac0fd13bbb3a7d3a2c6d3add92075669c326cc5b600044d.js: -------------------------------------------------------------------------------- 1 | $('#general-loader').hide(); 2 | -------------------------------------------------------------------------------- /public/assets/projects/index-071994c0cb7e86b5b4d9ed7c6d4fb55599bd39c881ec4cd06a49d85d879ad27b.js: -------------------------------------------------------------------------------- 1 | $(".col-table-details").hide(); 2 | bindSearchProjects(); 3 | -------------------------------------------------------------------------------- /public/assets/projects/index-3cb6e3b6a6baf18b855abd9d873d3d5b32c4cd44a4cbad6d66bc4438ea48655d.js: -------------------------------------------------------------------------------- 1 | $(".col-table-details").hide(); 2 | bindSearchProjects(); 3 | -------------------------------------------------------------------------------- /public/assets/projects/index-e0c61868fcb4ea976ddcc842ac49b8ecf5379738193ff62b55f9728423170da4.js: -------------------------------------------------------------------------------- 1 | $(".col-table-details").hide(); 2 | -------------------------------------------------------------------------------- /public/assets/replenishing_consolidations/index-7143ac9b615679261d0dedf8a102033136e65340a1595d5698dc54ea450bf2bc.js: -------------------------------------------------------------------------------- 1 | $(".col-table-details").hide(); 2 | -------------------------------------------------------------------------------- /public/assets/shared/charts-4aded83d7c953e9f8049b2e6b2e5cf1e4ecef561f7d1183f028c5bafec8daf88.css: -------------------------------------------------------------------------------- 1 | .flow-chart { 2 | max-height: 400px; 3 | } 4 | -------------------------------------------------------------------------------- /public/assets/shared/charts-68c576571967a53d4e3834728e2a9a0ed6054417258fd34717eaadfe61154412.css: -------------------------------------------------------------------------------- 1 | .flow-chart { 2 | max-height: 400px; 3 | } 4 | -------------------------------------------------------------------------------- /public/assets/shared/charts-c079761d87bba5cc9dfacaa43b5a27b340d3ae47e999f3f2b67eb6c97b7f84fb.css: -------------------------------------------------------------------------------- 1 | .flow-chart { 2 | max-height: 400px; 3 | } 4 | -------------------------------------------------------------------------------- /public/assets/team_members/show-22ce1bd92ea3f089c4a5fe0e3ebc70e924ec2025da39a3ce987d7b9481db09fc.js: -------------------------------------------------------------------------------- 1 | buildOperationsCharts(); 2 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/spa-build: -------------------------------------------------------------------------------- 1 | ../app/spa/build/ -------------------------------------------------------------------------------- /public/uploads/user/1/default_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/public/uploads/user/1/default_image.png -------------------------------------------------------------------------------- /public/uploads/user/1/thumb_default_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/public/uploads/user/1/thumb_default_image.png -------------------------------------------------------------------------------- /public/uploads/user/default_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/public/uploads/user/default_image.png -------------------------------------------------------------------------------- /public/uploads/user/thumb_default_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/public/uploads/user/thumb_default_image.png -------------------------------------------------------------------------------- /scripts/create-user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/scripts/create-user.rb -------------------------------------------------------------------------------- /spec/adapters/jira/jira_issue_adapter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/adapters/jira/jira_issue_adapter_spec.rb -------------------------------------------------------------------------------- /spec/controllers/charts_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/charts_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/companies_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/companies_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/contracts_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/contracts_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/customers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/customers_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/demands_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/demands_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/graphql_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/graphql_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/home_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/home_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/plans_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/plans_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/products_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/products_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/projects_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/projects_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/stages_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/stages_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/teams_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/teams_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/controllers/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/data_objects/replenishing_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/data_objects/replenishing_data_spec.rb -------------------------------------------------------------------------------- /spec/data_objects/scatter_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/data_objects/scatter_data_spec.rb -------------------------------------------------------------------------------- /spec/data_objects/stage_analytic_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/data_objects/stage_analytic_data_spec.rb -------------------------------------------------------------------------------- /spec/fabricators/company_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/company_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/contract_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/contract_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/customer_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/customer_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/demand_block_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/demand_block_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/demand_comment_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/demand_comment_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/demand_effort_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/demand_effort_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/demand_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/demand_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/flow_event_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/flow_event_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/membership_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/membership_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/plan_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/plan_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/portfolio_unit_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/portfolio_unit_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/product_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/product_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/product_user_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/product_user_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/project_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/project_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/risk_review_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/risk_review_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/score_matrix_fabricator.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | Fabricator(:score_matrix) do 4 | product 5 | end 6 | -------------------------------------------------------------------------------- /spec/fabricators/stage_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/stage_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/team_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/team_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/team_member_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/team_member_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/team_resource_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/team_resource_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/user_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/user_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/user_invite_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/user_invite_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/user_plan_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/user_plan_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/work_item_type_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fabricators/work_item_type_fabricator.rb -------------------------------------------------------------------------------- /spec/fixtures/default_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/fixtures/default_image.png -------------------------------------------------------------------------------- /spec/graphql/types/mutation_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/graphql/types/mutation_type_spec.rb -------------------------------------------------------------------------------- /spec/graphql/types/query_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/graphql/types/query_type_spec.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/date_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/helpers/date_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/demand_blocks_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/helpers/demand_blocks_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/filter_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/helpers/filter_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/portfolio_unit_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/helpers/portfolio_unit_helper_spec.rb -------------------------------------------------------------------------------- /spec/jobs/jira/process_jira_issue_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/jobs/jira/process_jira_issue_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/project_risk_monitor_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/jobs/project_risk_monitor_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/risk_review_generator_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/jobs/risk_review_generator_job_spec.rb -------------------------------------------------------------------------------- /spec/mailers/user_notifier_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/mailers/user_notifier_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/company_settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/company_settings_spec.rb -------------------------------------------------------------------------------- /spec/models/company_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/company_spec.rb -------------------------------------------------------------------------------- /spec/models/contract_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/contract_spec.rb -------------------------------------------------------------------------------- /spec/models/customer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/customer_spec.rb -------------------------------------------------------------------------------- /spec/models/customers_project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/customers_project_spec.rb -------------------------------------------------------------------------------- /spec/models/demand_block_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/demand_block_spec.rb -------------------------------------------------------------------------------- /spec/models/demand_comment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/demand_comment_spec.rb -------------------------------------------------------------------------------- /spec/models/demand_effort_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/demand_effort_spec.rb -------------------------------------------------------------------------------- /spec/models/demand_score_matrix_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/demand_score_matrix_spec.rb -------------------------------------------------------------------------------- /spec/models/demand_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/demand_spec.rb -------------------------------------------------------------------------------- /spec/models/demand_transition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/demand_transition_spec.rb -------------------------------------------------------------------------------- /spec/models/devise_customer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/devise_customer_spec.rb -------------------------------------------------------------------------------- /spec/models/financial_information_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/financial_information_spec.rb -------------------------------------------------------------------------------- /spec/models/flow_event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/flow_event_spec.rb -------------------------------------------------------------------------------- /spec/models/item_assignment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/item_assignment_spec.rb -------------------------------------------------------------------------------- /spec/models/jira/jira_account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/jira/jira_account_spec.rb -------------------------------------------------------------------------------- /spec/models/jira/jira_api_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/jira/jira_api_error_spec.rb -------------------------------------------------------------------------------- /spec/models/membership_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/membership_spec.rb -------------------------------------------------------------------------------- /spec/models/plan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/plan_spec.rb -------------------------------------------------------------------------------- /spec/models/portfolio_unit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/portfolio_unit_spec.rb -------------------------------------------------------------------------------- /spec/models/product_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/product_spec.rb -------------------------------------------------------------------------------- /spec/models/product_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/product_user_spec.rb -------------------------------------------------------------------------------- /spec/models/products_project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/products_project_spec.rb -------------------------------------------------------------------------------- /spec/models/project_additional_hour_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/project_additional_hour_spec.rb -------------------------------------------------------------------------------- /spec/models/project_broken_wip_log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/project_broken_wip_log_spec.rb -------------------------------------------------------------------------------- /spec/models/project_risk_alert_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/project_risk_alert_spec.rb -------------------------------------------------------------------------------- /spec/models/project_risk_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/project_risk_config_spec.rb -------------------------------------------------------------------------------- /spec/models/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/project_spec.rb -------------------------------------------------------------------------------- /spec/models/risk_review_action_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/risk_review_action_item_spec.rb -------------------------------------------------------------------------------- /spec/models/risk_review_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/risk_review_spec.rb -------------------------------------------------------------------------------- /spec/models/score_matrix_answer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/score_matrix_answer_spec.rb -------------------------------------------------------------------------------- /spec/models/score_matrix_question_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/score_matrix_question_spec.rb -------------------------------------------------------------------------------- /spec/models/score_matrix_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/score_matrix_spec.rb -------------------------------------------------------------------------------- /spec/models/service_delivery_review_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/service_delivery_review_spec.rb -------------------------------------------------------------------------------- /spec/models/slack_configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/slack_configuration_spec.rb -------------------------------------------------------------------------------- /spec/models/stage_project_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/stage_project_config_spec.rb -------------------------------------------------------------------------------- /spec/models/stage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/stage_spec.rb -------------------------------------------------------------------------------- /spec/models/stages_team_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/stages_team_spec.rb -------------------------------------------------------------------------------- /spec/models/team_member_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/team_member_spec.rb -------------------------------------------------------------------------------- /spec/models/team_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/team_resource_spec.rb -------------------------------------------------------------------------------- /spec/models/team_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/team_spec.rb -------------------------------------------------------------------------------- /spec/models/user_company_role_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/user_company_role_spec.rb -------------------------------------------------------------------------------- /spec/models/user_invite_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/user_invite_spec.rb -------------------------------------------------------------------------------- /spec/models/user_plan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/user_plan_spec.rb -------------------------------------------------------------------------------- /spec/models/user_project_role_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/user_project_role_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/work_item_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/models/work_item_type_spec.rb -------------------------------------------------------------------------------- /spec/readers/jira/jira_reader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/readers/jira/jira_reader_spec.rb -------------------------------------------------------------------------------- /spec/repositories/stages_repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/repositories/stages_repository_spec.rb -------------------------------------------------------------------------------- /spec/services/collections_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/services/collections_service_spec.rb -------------------------------------------------------------------------------- /spec/services/contract_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/services/contract_service_spec.rb -------------------------------------------------------------------------------- /spec/services/demand_effort_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/services/demand_effort_service_spec.rb -------------------------------------------------------------------------------- /spec/services/demand_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/services/demand_service_spec.rb -------------------------------------------------------------------------------- /spec/services/jira/jira_api_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/services/jira/jira_api_service_spec.rb -------------------------------------------------------------------------------- /spec/services/project_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/services/project_service_spec.rb -------------------------------------------------------------------------------- /spec/services/risk_review_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/services/risk_review_service_spec.rb -------------------------------------------------------------------------------- /spec/services/team_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/services/team_service_spec.rb -------------------------------------------------------------------------------- /spec/services/time_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/services/time_service_spec.rb -------------------------------------------------------------------------------- /spec/services/user_invite_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/services/user_invite_service_spec.rb -------------------------------------------------------------------------------- /spec/services/viagem-pato-branco-obs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/services/viagem-pato-branco-obs.txt -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/authentication_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TallerWebSolutions/flow_climate/HEAD/spec/support/authentication_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------