├── .circleci └── config.yml ├── .editorconfig ├── .env.sample ├── .gitignore ├── .yamllint ├── LICENSE ├── README.md ├── api ├── .dockerignore ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Rakefile ├── app │ ├── controllers │ │ ├── application_controller.rb │ │ ├── attachments_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── graphql_controller.rb │ │ ├── health_controller.rb │ │ └── sessions_controller.rb │ ├── errors │ │ ├── config_key_not_found.rb │ │ ├── conflict_answer_confirming.rb │ │ ├── issue_current_status_mismatched.rb │ │ ├── record_not_exists.rb │ │ ├── unhandled_class.rb │ │ ├── unhandled_config_value_type.rb │ │ ├── unhandled_issue_status.rb │ │ ├── unhandled_notification_target.rb │ │ └── unhandled_problem_body_mode.rb │ ├── graphql │ │ ├── acl.rb │ │ ├── api_schema.rb │ │ ├── association_loader.rb │ │ ├── custom_context.rb │ │ ├── mutations │ │ │ ├── .keep │ │ │ ├── add_answer.rb │ │ │ ├── add_issue_comment.rb │ │ │ ├── add_notice.rb │ │ │ ├── add_penalty.rb │ │ │ ├── add_problem_supplement.rb │ │ │ ├── apply_category.rb │ │ │ ├── apply_problem.rb │ │ │ ├── apply_problem_environment.rb │ │ │ ├── apply_score.rb │ │ │ ├── apply_team.rb │ │ │ ├── base_mutation.rb │ │ │ ├── confirming_answer.rb │ │ │ ├── delete_attachment.rb │ │ │ ├── delete_category.rb │ │ │ ├── delete_issue_comment.rb │ │ │ ├── delete_notice.rb │ │ │ ├── delete_problem.rb │ │ │ ├── delete_problem_environment.rb │ │ │ ├── delete_problem_supplement.rb │ │ │ ├── delete_session.rb │ │ │ ├── delete_team.rb │ │ │ ├── pin_notice.rb │ │ │ ├── regrade_answers.rb │ │ │ ├── start_issue.rb │ │ │ ├── transition_issue_state.rb │ │ │ └── update_config.rb │ │ ├── notification.rb │ │ ├── record_loader.rb │ │ └── types │ │ │ ├── .keep │ │ │ ├── answer_type.rb │ │ │ ├── attachment_type.rb │ │ │ ├── base_argument.rb │ │ │ ├── base_enum.rb │ │ │ ├── base_field.rb │ │ │ ├── base_input_object.rb │ │ │ ├── base_interface.rb │ │ │ ├── base_object.rb │ │ │ ├── base_scalar.rb │ │ │ ├── base_union.rb │ │ │ ├── category_type.rb │ │ │ ├── config_type.rb │ │ │ ├── contest_info_type.rb │ │ │ ├── date_time.rb │ │ │ ├── enums │ │ │ ├── issue_status.rb │ │ │ ├── problem_body_mode.rb │ │ │ └── team_role.rb │ │ │ ├── issue_comment_type.rb │ │ │ ├── issue_type.rb │ │ │ ├── mutation_type.rb │ │ │ ├── notice_type.rb │ │ │ ├── penalty_type.rb │ │ │ ├── problem_body_type.rb │ │ │ ├── problem_environment_type.rb │ │ │ ├── problem_supplement_type.rb │ │ │ ├── problem_type.rb │ │ │ ├── query_type.rb │ │ │ ├── report_card_type.rb │ │ │ ├── scoreboard_type.rb │ │ │ ├── session_type.rb │ │ │ └── team_type.rb │ ├── jobs │ │ ├── application_job.rb │ │ └── slack_notifier_job.rb │ ├── models │ │ ├── answer.rb │ │ ├── application_record.rb │ │ ├── attachment.rb │ │ ├── category.rb │ │ ├── concerns │ │ │ ├── .keep │ │ │ └── readable.rb │ │ ├── config.rb │ │ ├── first_correct_answer.rb │ │ ├── issue.rb │ │ ├── issue_comment.rb │ │ ├── notice.rb │ │ ├── penalty.rb │ │ ├── problem.rb │ │ ├── problem_body.rb │ │ ├── problem_environment.rb │ │ ├── problem_supplement.rb │ │ ├── report_card.rb │ │ ├── score.rb │ │ ├── score_aggregator.rb │ │ ├── scoreboard.rb │ │ ├── session.rb │ │ └── team.rb │ └── validators │ │ ├── allow_empty_validator.rb │ │ ├── answer_bodies_validator.rb │ │ ├── boolean_validator.rb │ │ ├── color_code_validator.rb │ │ ├── daterange_validator.rb │ │ └── disallow_empty_validator.rb ├── bin │ ├── rails │ ├── rake │ ├── rspec │ ├── rubocop │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── credentials.yml.enc │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── backtrace_silencers.rb │ │ ├── bugsnag.rb │ │ ├── bullet.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── cors.rb │ │ ├── filter_parameter_logging.rb │ │ ├── generators.rb │ │ ├── inflections.rb │ │ ├── log_autoloaders.rb │ │ ├── mime_types.rb │ │ ├── oj.rb │ │ ├── plasma.rb │ │ ├── session_store.rb │ │ ├── slack.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── master.key │ ├── puma.rb │ ├── routes.rb │ └── spring.rb ├── db │ ├── migrate │ │ ├── 20190505151203_create_tables.rb │ │ ├── 20190627173053_rename_team_private_column_to_problems.rb │ │ ├── 20190714173914_change_issue_spec.rb │ │ ├── 20190718081336_add_criterion_column_to_problem_body.rb │ │ ├── 20190819133806_change_problem_body_corrects_and_candidates.rb │ │ ├── 20190828164407_change_attachment_table.rb │ │ ├── 20190911140552_add_percent_column_to_score.rb │ │ ├── 20190925181452_add_size_column_to_attachments.rb │ │ ├── 20190928093135_change_config_value_type.rb │ │ ├── 20191004164801_add_note_column_to_problem_environments_table.rb │ │ ├── 20200111113658_add_beginner_column_to_team.rb │ │ ├── 20200126085652_add_channel_to_team.rb │ │ ├── 20200213102257_add_secret_text_to_team.rb │ │ ├── 20200213102415_add_name_and_common_to_problem_environment.rb │ │ ├── 20200213102438_add_penalty_counter_table.rb │ │ ├── 20200214180036_change_nullable_of_team_table.rb │ │ ├── 20200216081620_recordlaize_penalty.rb │ │ ├── 20200220043407_change_env_note_nullfify.rb │ │ ├── 20200220043424_rename_env_note_to_secret_text.rb │ │ ├── 20200220112509_add_port_and_service_column_to_prob_env_table.rb │ │ ├── 20200224052015_change_password_size_of_problem_environment_table.rb │ │ ├── 20200225051338_add_unique_index_to_attachment_token.rb │ │ ├── 20200302020437_add_genre_column_to_problem_body.rb │ │ ├── 20200316132340_change_text_to_unlimited.rb │ │ ├── 20200320184404_rename_notice_target_team_to_team.rb │ │ ├── 20200320190850_disallow_null_problem_writer.rb │ │ └── 20200320192230_add_resettable_to_problem.rb │ ├── schema.rb │ ├── seeds.rb │ └── seeds │ │ ├── development.rb │ │ └── production.rb ├── lib │ ├── graphql_query_builder.rb │ ├── plasma_push.rb │ └── tasks │ │ └── .keep ├── public │ └── robots.txt └── spec │ ├── factories │ ├── answer.rb │ ├── category.rb │ ├── issue.rb │ ├── issue_comment.rb │ ├── notice.rb │ ├── penalty.rb │ ├── problem.rb │ ├── problem_body.rb │ ├── problem_environment.rb │ ├── problem_supplement.rb │ ├── score.rb │ └── team.rb │ ├── lib │ └── graphql_query_builder_spec.rb │ ├── models │ ├── answer_spec.rb │ └── problem_body_spec.rb │ ├── rails_helper.rb │ ├── requests │ ├── graphql │ │ ├── mutations │ │ │ ├── apply_problem_environment_spec.rb │ │ │ └── apply_problem_spec.rb │ │ └── queries │ │ │ ├── problem_spec.rb │ │ │ ├── problems_spec.rb │ │ │ └── scoreboards_spec.rb │ ├── graphql_spec.rb │ └── sessions_spec.rb │ ├── spec_helper.rb │ └── support │ ├── config_helpers.rb │ ├── graphql_helpers.rb │ ├── request_helpers.rb │ ├── session_helpers.rb │ └── shared │ └── answer_bodies_helpers.rb ├── bench ├── README.md ├── locustfile.py └── queries │ └── problems_heavy.gql ├── dip.yml ├── docker-compose.yml ├── proxy └── nginx.conf ├── scripts ├── build-for-deploy.sh ├── pull-build-deploy.sh └── restore.sh ├── ui ├── .babelrc ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .yarnrc ├── Dockerfile ├── assets │ ├── css │ │ ├── commons.sass │ │ └── variables.sass │ └── img │ │ ├── arrow.eps │ │ ├── arrow.svg │ │ ├── ictsc-logo-white.eps │ │ └── ictsc-logo-white.svg ├── components │ ├── answers │ │ ├── AnswerCard.vue │ │ └── DisplayToggleButtons.vue │ ├── commons │ │ ├── CountdownDeleteButton.vue │ │ ├── DateTimePicker.vue │ │ ├── EditableSlider.vue │ │ ├── ExpandableButton.vue │ │ ├── ExpandableCard.vue │ │ ├── LockButton.vue │ │ ├── Markdown.vue │ │ ├── MarkdownEditorModal.vue │ │ ├── MarkdownTextArea.vue │ │ ├── NumberTextField.vue │ │ ├── PageTitle.vue │ │ ├── PenButton.vue │ │ ├── PinButton.vue │ │ ├── PlusButton.vue │ │ ├── RawText.vue │ │ └── UpDownArrow.vue │ ├── issues │ │ ├── IssueCard.vue │ │ └── StatusToggleButtons.vue │ ├── misc │ │ ├── ApplyModal │ │ │ ├── ActionButtons.vue │ │ │ ├── ApplyModalCommons.js │ │ │ ├── ApplyModalFields.js │ │ │ ├── CodeTextField.vue │ │ │ ├── ConflictWarning.vue │ │ │ ├── OrderSlider.vue │ │ │ └── TitleTextField.vue │ │ ├── CategoryModal.vue │ │ ├── ConfigModal.vue │ │ ├── EnvironmentModal.vue │ │ ├── Navigation.vue │ │ ├── NavigationLink.vue │ │ ├── NotificationArea.vue │ │ ├── NotificationCard.vue │ │ ├── ProblemModal.vue │ │ ├── ProblemModal │ │ │ ├── NewCandidates.vue │ │ │ ├── NewCandidatesIconButton.vue │ │ │ ├── NewCandidatesItemField.vue │ │ │ └── NewCandidatesNarrowTextField.vue │ │ ├── ScrollButtons.vue │ │ ├── TeamDetailsCard.vue │ │ ├── TeamModal.vue │ │ └── Timer.vue │ ├── problems │ │ ├── Attention.vue │ │ ├── Category.vue │ │ ├── Flow.vue │ │ ├── FlowItem.vue │ │ ├── ProblemCard.vue │ │ ├── ProblemCardPlayer.vue │ │ ├── ProblemCardStaff.vue │ │ └── id │ │ │ ├── AnswerCard.vue │ │ │ ├── AnswerForm.vue │ │ │ ├── AnswerFormCheckbox.vue │ │ │ ├── AnswerFormRadioButton.vue │ │ │ ├── AnswerPanel.vue │ │ │ ├── DetailsPanel.vue │ │ │ ├── EnvironmentArea.vue │ │ │ ├── EnvironmentTable.vue │ │ │ ├── GradingForm.vue │ │ │ ├── GradingSlider.vue │ │ │ ├── InfoChipsArea.vue │ │ │ ├── IssueCommentCard.vue │ │ │ ├── IssuePanel.vue │ │ │ ├── PenaltyCounter.vue │ │ │ ├── SupplementArea.vue │ │ │ └── SupplementCard.vue │ ├── settings │ │ ├── ConfigTable.vue │ │ ├── DeleteComponent.vue │ │ ├── DeleteComponentArea.vue │ │ ├── ExportImportButtons.vue │ │ ├── ExportScoresButton.vue │ │ ├── ImportModal.vue │ │ ├── ItemSelectButton.vue │ │ ├── RegradeAnswersModal.vue │ │ └── SessionTable.vue │ ├── summary │ │ └── ReportCardTable.vue │ ├── teams │ │ └── TeamCard.vue │ └── top │ │ ├── NoticeCard.vue │ │ ├── NoticeModal.vue │ │ ├── NoticePanel.vue │ │ ├── PanelLabel.vue │ │ ├── ScoreboardCard.vue │ │ ├── ScoreboardGroup.vue │ │ └── ScoreboardPanel.vue ├── jest.config.js ├── layouts │ └── default.vue ├── node_modules ├── nuxt.config.js ├── orm │ ├── Answer.js │ ├── BaseModel.js │ ├── Category.js │ ├── Config.js │ ├── Issue.js │ ├── IssueComment.js │ ├── Mutations.js │ ├── Notice.js │ ├── Penalty.js │ ├── Problem.js │ ├── ProblemBody.js │ ├── ProblemEnvironment.js │ ├── ProblemSupplement.js │ ├── Queries.js │ ├── ReportCard.js │ ├── Scoreboard.js │ ├── Session.js │ ├── Team.js │ └── index.js ├── package.json ├── pages │ ├── answers.vue │ ├── guide.vue │ ├── index.vue │ ├── issues.vue │ ├── login.vue │ ├── problems │ │ ├── _id.vue │ │ └── index.vue │ ├── settings.vue │ ├── summary.vue │ └── teams.vue ├── plugins │ ├── apollo-client.js │ ├── axios.js │ ├── elvis.js │ ├── eventsource.js │ ├── json-storage.js │ ├── mixins.js │ ├── moment-update-locale.js │ ├── push.js │ ├── vue-clipboard.js │ ├── vue-underscore.js │ └── vuex-orm.js ├── static │ └── favicon.png ├── store │ ├── contestInfo.js │ ├── index.js │ ├── notification.js │ ├── session.js │ └── time.js ├── test │ └── Logo.spec.js └── yarn.lock └── yamllint └── Dockerfile /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/README.md -------------------------------------------------------------------------------- /api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/.dockerignore -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- 1 | log/ 2 | tmp/ 3 | -------------------------------------------------------------------------------- /api/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/.rubocop.yml -------------------------------------------------------------------------------- /api/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.7.2 2 | -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/Gemfile -------------------------------------------------------------------------------- /api/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/Gemfile.lock -------------------------------------------------------------------------------- /api/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/Rakefile -------------------------------------------------------------------------------- /api/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /api/app/controllers/attachments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/controllers/attachments_controller.rb -------------------------------------------------------------------------------- /api/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/app/controllers/graphql_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/controllers/graphql_controller.rb -------------------------------------------------------------------------------- /api/app/controllers/health_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/controllers/health_controller.rb -------------------------------------------------------------------------------- /api/app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /api/app/errors/config_key_not_found.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/errors/config_key_not_found.rb -------------------------------------------------------------------------------- /api/app/errors/conflict_answer_confirming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/errors/conflict_answer_confirming.rb -------------------------------------------------------------------------------- /api/app/errors/issue_current_status_mismatched.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/errors/issue_current_status_mismatched.rb -------------------------------------------------------------------------------- /api/app/errors/record_not_exists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/errors/record_not_exists.rb -------------------------------------------------------------------------------- /api/app/errors/unhandled_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/errors/unhandled_class.rb -------------------------------------------------------------------------------- /api/app/errors/unhandled_config_value_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/errors/unhandled_config_value_type.rb -------------------------------------------------------------------------------- /api/app/errors/unhandled_issue_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/errors/unhandled_issue_status.rb -------------------------------------------------------------------------------- /api/app/errors/unhandled_notification_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/errors/unhandled_notification_target.rb -------------------------------------------------------------------------------- /api/app/errors/unhandled_problem_body_mode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/errors/unhandled_problem_body_mode.rb -------------------------------------------------------------------------------- /api/app/graphql/acl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/acl.rb -------------------------------------------------------------------------------- /api/app/graphql/api_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/api_schema.rb -------------------------------------------------------------------------------- /api/app/graphql/association_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/association_loader.rb -------------------------------------------------------------------------------- /api/app/graphql/custom_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/custom_context.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/app/graphql/mutations/add_answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/add_answer.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/add_issue_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/add_issue_comment.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/add_notice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/add_notice.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/add_penalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/add_penalty.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/add_problem_supplement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/add_problem_supplement.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/apply_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/apply_category.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/apply_problem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/apply_problem.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/apply_problem_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/apply_problem_environment.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/apply_score.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/apply_score.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/apply_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/apply_team.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/base_mutation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/base_mutation.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/confirming_answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/confirming_answer.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/delete_attachment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/delete_attachment.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/delete_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/delete_category.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/delete_issue_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/delete_issue_comment.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/delete_notice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/delete_notice.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/delete_problem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/delete_problem.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/delete_problem_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/delete_problem_environment.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/delete_problem_supplement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/delete_problem_supplement.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/delete_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/delete_session.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/delete_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/delete_team.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/pin_notice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/pin_notice.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/regrade_answers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/regrade_answers.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/start_issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/start_issue.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/transition_issue_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/transition_issue_state.rb -------------------------------------------------------------------------------- /api/app/graphql/mutations/update_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/mutations/update_config.rb -------------------------------------------------------------------------------- /api/app/graphql/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/notification.rb -------------------------------------------------------------------------------- /api/app/graphql/record_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/record_loader.rb -------------------------------------------------------------------------------- /api/app/graphql/types/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/app/graphql/types/answer_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/answer_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/attachment_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/attachment_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/base_argument.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/base_argument.rb -------------------------------------------------------------------------------- /api/app/graphql/types/base_enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/base_enum.rb -------------------------------------------------------------------------------- /api/app/graphql/types/base_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/base_field.rb -------------------------------------------------------------------------------- /api/app/graphql/types/base_input_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/base_input_object.rb -------------------------------------------------------------------------------- /api/app/graphql/types/base_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/base_interface.rb -------------------------------------------------------------------------------- /api/app/graphql/types/base_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/base_object.rb -------------------------------------------------------------------------------- /api/app/graphql/types/base_scalar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/base_scalar.rb -------------------------------------------------------------------------------- /api/app/graphql/types/base_union.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/base_union.rb -------------------------------------------------------------------------------- /api/app/graphql/types/category_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/category_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/config_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/config_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/contest_info_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/contest_info_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/date_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/date_time.rb -------------------------------------------------------------------------------- /api/app/graphql/types/enums/issue_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/enums/issue_status.rb -------------------------------------------------------------------------------- /api/app/graphql/types/enums/problem_body_mode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/enums/problem_body_mode.rb -------------------------------------------------------------------------------- /api/app/graphql/types/enums/team_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/enums/team_role.rb -------------------------------------------------------------------------------- /api/app/graphql/types/issue_comment_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/issue_comment_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/issue_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/issue_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/mutation_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/mutation_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/notice_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/notice_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/penalty_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/penalty_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/problem_body_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/problem_body_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/problem_environment_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/problem_environment_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/problem_supplement_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/problem_supplement_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/problem_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/problem_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/query_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/query_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/report_card_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/report_card_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/scoreboard_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/scoreboard_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/session_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/session_type.rb -------------------------------------------------------------------------------- /api/app/graphql/types/team_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/graphql/types/team_type.rb -------------------------------------------------------------------------------- /api/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/jobs/application_job.rb -------------------------------------------------------------------------------- /api/app/jobs/slack_notifier_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/jobs/slack_notifier_job.rb -------------------------------------------------------------------------------- /api/app/models/answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/answer.rb -------------------------------------------------------------------------------- /api/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/application_record.rb -------------------------------------------------------------------------------- /api/app/models/attachment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/attachment.rb -------------------------------------------------------------------------------- /api/app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/category.rb -------------------------------------------------------------------------------- /api/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/app/models/concerns/readable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/concerns/readable.rb -------------------------------------------------------------------------------- /api/app/models/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/config.rb -------------------------------------------------------------------------------- /api/app/models/first_correct_answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/first_correct_answer.rb -------------------------------------------------------------------------------- /api/app/models/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/issue.rb -------------------------------------------------------------------------------- /api/app/models/issue_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/issue_comment.rb -------------------------------------------------------------------------------- /api/app/models/notice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/notice.rb -------------------------------------------------------------------------------- /api/app/models/penalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/penalty.rb -------------------------------------------------------------------------------- /api/app/models/problem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/problem.rb -------------------------------------------------------------------------------- /api/app/models/problem_body.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/problem_body.rb -------------------------------------------------------------------------------- /api/app/models/problem_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/problem_environment.rb -------------------------------------------------------------------------------- /api/app/models/problem_supplement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/problem_supplement.rb -------------------------------------------------------------------------------- /api/app/models/report_card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/report_card.rb -------------------------------------------------------------------------------- /api/app/models/score.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/score.rb -------------------------------------------------------------------------------- /api/app/models/score_aggregator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/score_aggregator.rb -------------------------------------------------------------------------------- /api/app/models/scoreboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/scoreboard.rb -------------------------------------------------------------------------------- /api/app/models/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/session.rb -------------------------------------------------------------------------------- /api/app/models/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/models/team.rb -------------------------------------------------------------------------------- /api/app/validators/allow_empty_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/validators/allow_empty_validator.rb -------------------------------------------------------------------------------- /api/app/validators/answer_bodies_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/validators/answer_bodies_validator.rb -------------------------------------------------------------------------------- /api/app/validators/boolean_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/validators/boolean_validator.rb -------------------------------------------------------------------------------- /api/app/validators/color_code_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/validators/color_code_validator.rb -------------------------------------------------------------------------------- /api/app/validators/daterange_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/validators/daterange_validator.rb -------------------------------------------------------------------------------- /api/app/validators/disallow_empty_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/app/validators/disallow_empty_validator.rb -------------------------------------------------------------------------------- /api/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/bin/rails -------------------------------------------------------------------------------- /api/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/bin/rake -------------------------------------------------------------------------------- /api/bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/bin/rspec -------------------------------------------------------------------------------- /api/bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/bin/rubocop -------------------------------------------------------------------------------- /api/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/bin/setup -------------------------------------------------------------------------------- /api/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config.ru -------------------------------------------------------------------------------- /api/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/application.rb -------------------------------------------------------------------------------- /api/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/boot.rb -------------------------------------------------------------------------------- /api/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/cable.yml -------------------------------------------------------------------------------- /api/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/credentials.yml.enc -------------------------------------------------------------------------------- /api/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/database.yml -------------------------------------------------------------------------------- /api/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/environment.rb -------------------------------------------------------------------------------- /api/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/environments/development.rb -------------------------------------------------------------------------------- /api/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/environments/production.rb -------------------------------------------------------------------------------- /api/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/environments/test.rb -------------------------------------------------------------------------------- /api/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /api/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /api/config/initializers/bugsnag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/bugsnag.rb -------------------------------------------------------------------------------- /api/config/initializers/bullet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/bullet.rb -------------------------------------------------------------------------------- /api/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /api/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /api/config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/cors.rb -------------------------------------------------------------------------------- /api/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /api/config/initializers/generators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/generators.rb -------------------------------------------------------------------------------- /api/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/inflections.rb -------------------------------------------------------------------------------- /api/config/initializers/log_autoloaders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/log_autoloaders.rb -------------------------------------------------------------------------------- /api/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /api/config/initializers/oj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/oj.rb -------------------------------------------------------------------------------- /api/config/initializers/plasma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/plasma.rb -------------------------------------------------------------------------------- /api/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/session_store.rb -------------------------------------------------------------------------------- /api/config/initializers/slack.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | # null許容 4 | Rails.application.config.slack_webhook_url = ENV['SLACK_WEBHOOK_URL'] 5 | -------------------------------------------------------------------------------- /api/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /api/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/locales/en.yml -------------------------------------------------------------------------------- /api/config/master.key: -------------------------------------------------------------------------------- 1 | 8376a1beee5154b6ccf20e8af6971fbf -------------------------------------------------------------------------------- /api/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/puma.rb -------------------------------------------------------------------------------- /api/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/routes.rb -------------------------------------------------------------------------------- /api/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/config/spring.rb -------------------------------------------------------------------------------- /api/db/migrate/20190505151203_create_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20190505151203_create_tables.rb -------------------------------------------------------------------------------- /api/db/migrate/20190627173053_rename_team_private_column_to_problems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20190627173053_rename_team_private_column_to_problems.rb -------------------------------------------------------------------------------- /api/db/migrate/20190714173914_change_issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20190714173914_change_issue_spec.rb -------------------------------------------------------------------------------- /api/db/migrate/20190718081336_add_criterion_column_to_problem_body.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20190718081336_add_criterion_column_to_problem_body.rb -------------------------------------------------------------------------------- /api/db/migrate/20190819133806_change_problem_body_corrects_and_candidates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20190819133806_change_problem_body_corrects_and_candidates.rb -------------------------------------------------------------------------------- /api/db/migrate/20190828164407_change_attachment_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20190828164407_change_attachment_table.rb -------------------------------------------------------------------------------- /api/db/migrate/20190911140552_add_percent_column_to_score.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20190911140552_add_percent_column_to_score.rb -------------------------------------------------------------------------------- /api/db/migrate/20190925181452_add_size_column_to_attachments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20190925181452_add_size_column_to_attachments.rb -------------------------------------------------------------------------------- /api/db/migrate/20190928093135_change_config_value_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20190928093135_change_config_value_type.rb -------------------------------------------------------------------------------- /api/db/migrate/20191004164801_add_note_column_to_problem_environments_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20191004164801_add_note_column_to_problem_environments_table.rb -------------------------------------------------------------------------------- /api/db/migrate/20200111113658_add_beginner_column_to_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200111113658_add_beginner_column_to_team.rb -------------------------------------------------------------------------------- /api/db/migrate/20200126085652_add_channel_to_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200126085652_add_channel_to_team.rb -------------------------------------------------------------------------------- /api/db/migrate/20200213102257_add_secret_text_to_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200213102257_add_secret_text_to_team.rb -------------------------------------------------------------------------------- /api/db/migrate/20200213102415_add_name_and_common_to_problem_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200213102415_add_name_and_common_to_problem_environment.rb -------------------------------------------------------------------------------- /api/db/migrate/20200213102438_add_penalty_counter_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200213102438_add_penalty_counter_table.rb -------------------------------------------------------------------------------- /api/db/migrate/20200214180036_change_nullable_of_team_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200214180036_change_nullable_of_team_table.rb -------------------------------------------------------------------------------- /api/db/migrate/20200216081620_recordlaize_penalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200216081620_recordlaize_penalty.rb -------------------------------------------------------------------------------- /api/db/migrate/20200220043407_change_env_note_nullfify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200220043407_change_env_note_nullfify.rb -------------------------------------------------------------------------------- /api/db/migrate/20200220043424_rename_env_note_to_secret_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200220043424_rename_env_note_to_secret_text.rb -------------------------------------------------------------------------------- /api/db/migrate/20200220112509_add_port_and_service_column_to_prob_env_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200220112509_add_port_and_service_column_to_prob_env_table.rb -------------------------------------------------------------------------------- /api/db/migrate/20200224052015_change_password_size_of_problem_environment_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200224052015_change_password_size_of_problem_environment_table.rb -------------------------------------------------------------------------------- /api/db/migrate/20200225051338_add_unique_index_to_attachment_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200225051338_add_unique_index_to_attachment_token.rb -------------------------------------------------------------------------------- /api/db/migrate/20200302020437_add_genre_column_to_problem_body.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200302020437_add_genre_column_to_problem_body.rb -------------------------------------------------------------------------------- /api/db/migrate/20200316132340_change_text_to_unlimited.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200316132340_change_text_to_unlimited.rb -------------------------------------------------------------------------------- /api/db/migrate/20200320184404_rename_notice_target_team_to_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200320184404_rename_notice_target_team_to_team.rb -------------------------------------------------------------------------------- /api/db/migrate/20200320190850_disallow_null_problem_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200320190850_disallow_null_problem_writer.rb -------------------------------------------------------------------------------- /api/db/migrate/20200320192230_add_resettable_to_problem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/migrate/20200320192230_add_resettable_to_problem.rb -------------------------------------------------------------------------------- /api/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/schema.rb -------------------------------------------------------------------------------- /api/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/seeds.rb -------------------------------------------------------------------------------- /api/db/seeds/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/seeds/development.rb -------------------------------------------------------------------------------- /api/db/seeds/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/db/seeds/production.rb -------------------------------------------------------------------------------- /api/lib/graphql_query_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/lib/graphql_query_builder.rb -------------------------------------------------------------------------------- /api/lib/plasma_push.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/lib/plasma_push.rb -------------------------------------------------------------------------------- /api/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/public/robots.txt -------------------------------------------------------------------------------- /api/spec/factories/answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/answer.rb -------------------------------------------------------------------------------- /api/spec/factories/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/category.rb -------------------------------------------------------------------------------- /api/spec/factories/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/issue.rb -------------------------------------------------------------------------------- /api/spec/factories/issue_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/issue_comment.rb -------------------------------------------------------------------------------- /api/spec/factories/notice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/notice.rb -------------------------------------------------------------------------------- /api/spec/factories/penalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/penalty.rb -------------------------------------------------------------------------------- /api/spec/factories/problem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/problem.rb -------------------------------------------------------------------------------- /api/spec/factories/problem_body.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/problem_body.rb -------------------------------------------------------------------------------- /api/spec/factories/problem_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/problem_environment.rb -------------------------------------------------------------------------------- /api/spec/factories/problem_supplement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/problem_supplement.rb -------------------------------------------------------------------------------- /api/spec/factories/score.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/score.rb -------------------------------------------------------------------------------- /api/spec/factories/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/factories/team.rb -------------------------------------------------------------------------------- /api/spec/lib/graphql_query_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/lib/graphql_query_builder_spec.rb -------------------------------------------------------------------------------- /api/spec/models/answer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/models/answer_spec.rb -------------------------------------------------------------------------------- /api/spec/models/problem_body_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/models/problem_body_spec.rb -------------------------------------------------------------------------------- /api/spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/rails_helper.rb -------------------------------------------------------------------------------- /api/spec/requests/graphql/mutations/apply_problem_environment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/requests/graphql/mutations/apply_problem_environment_spec.rb -------------------------------------------------------------------------------- /api/spec/requests/graphql/mutations/apply_problem_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/requests/graphql/mutations/apply_problem_spec.rb -------------------------------------------------------------------------------- /api/spec/requests/graphql/queries/problem_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/requests/graphql/queries/problem_spec.rb -------------------------------------------------------------------------------- /api/spec/requests/graphql/queries/problems_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/requests/graphql/queries/problems_spec.rb -------------------------------------------------------------------------------- /api/spec/requests/graphql/queries/scoreboards_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/requests/graphql/queries/scoreboards_spec.rb -------------------------------------------------------------------------------- /api/spec/requests/graphql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/requests/graphql_spec.rb -------------------------------------------------------------------------------- /api/spec/requests/sessions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/requests/sessions_spec.rb -------------------------------------------------------------------------------- /api/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/spec_helper.rb -------------------------------------------------------------------------------- /api/spec/support/config_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/support/config_helpers.rb -------------------------------------------------------------------------------- /api/spec/support/graphql_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/support/graphql_helpers.rb -------------------------------------------------------------------------------- /api/spec/support/request_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/support/request_helpers.rb -------------------------------------------------------------------------------- /api/spec/support/session_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/support/session_helpers.rb -------------------------------------------------------------------------------- /api/spec/support/shared/answer_bodies_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/api/spec/support/shared/answer_bodies_helpers.rb -------------------------------------------------------------------------------- /bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/bench/README.md -------------------------------------------------------------------------------- /bench/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/bench/locustfile.py -------------------------------------------------------------------------------- /bench/queries/problems_heavy.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/bench/queries/problems_heavy.gql -------------------------------------------------------------------------------- /dip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/dip.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /proxy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/proxy/nginx.conf -------------------------------------------------------------------------------- /scripts/build-for-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/scripts/build-for-deploy.sh -------------------------------------------------------------------------------- /scripts/pull-build-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/scripts/pull-build-deploy.sh -------------------------------------------------------------------------------- /scripts/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/scripts/restore.sh -------------------------------------------------------------------------------- /ui/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/.babelrc -------------------------------------------------------------------------------- /ui/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/.dockerignore -------------------------------------------------------------------------------- /ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/.eslintrc.js -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/.prettierrc -------------------------------------------------------------------------------- /ui/.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/.yarnrc -------------------------------------------------------------------------------- /ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/Dockerfile -------------------------------------------------------------------------------- /ui/assets/css/commons.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/assets/css/commons.sass -------------------------------------------------------------------------------- /ui/assets/css/variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/assets/css/variables.sass -------------------------------------------------------------------------------- /ui/assets/img/arrow.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/assets/img/arrow.eps -------------------------------------------------------------------------------- /ui/assets/img/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/assets/img/arrow.svg -------------------------------------------------------------------------------- /ui/assets/img/ictsc-logo-white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/assets/img/ictsc-logo-white.eps -------------------------------------------------------------------------------- /ui/assets/img/ictsc-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/assets/img/ictsc-logo-white.svg -------------------------------------------------------------------------------- /ui/components/answers/AnswerCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/answers/AnswerCard.vue -------------------------------------------------------------------------------- /ui/components/answers/DisplayToggleButtons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/answers/DisplayToggleButtons.vue -------------------------------------------------------------------------------- /ui/components/commons/CountdownDeleteButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/CountdownDeleteButton.vue -------------------------------------------------------------------------------- /ui/components/commons/DateTimePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/DateTimePicker.vue -------------------------------------------------------------------------------- /ui/components/commons/EditableSlider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/EditableSlider.vue -------------------------------------------------------------------------------- /ui/components/commons/ExpandableButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/ExpandableButton.vue -------------------------------------------------------------------------------- /ui/components/commons/ExpandableCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/ExpandableCard.vue -------------------------------------------------------------------------------- /ui/components/commons/LockButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/LockButton.vue -------------------------------------------------------------------------------- /ui/components/commons/Markdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/Markdown.vue -------------------------------------------------------------------------------- /ui/components/commons/MarkdownEditorModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/MarkdownEditorModal.vue -------------------------------------------------------------------------------- /ui/components/commons/MarkdownTextArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/MarkdownTextArea.vue -------------------------------------------------------------------------------- /ui/components/commons/NumberTextField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/NumberTextField.vue -------------------------------------------------------------------------------- /ui/components/commons/PageTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/PageTitle.vue -------------------------------------------------------------------------------- /ui/components/commons/PenButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/PenButton.vue -------------------------------------------------------------------------------- /ui/components/commons/PinButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/PinButton.vue -------------------------------------------------------------------------------- /ui/components/commons/PlusButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/PlusButton.vue -------------------------------------------------------------------------------- /ui/components/commons/RawText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/RawText.vue -------------------------------------------------------------------------------- /ui/components/commons/UpDownArrow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/commons/UpDownArrow.vue -------------------------------------------------------------------------------- /ui/components/issues/IssueCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/issues/IssueCard.vue -------------------------------------------------------------------------------- /ui/components/issues/StatusToggleButtons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/issues/StatusToggleButtons.vue -------------------------------------------------------------------------------- /ui/components/misc/ApplyModal/ActionButtons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ApplyModal/ActionButtons.vue -------------------------------------------------------------------------------- /ui/components/misc/ApplyModal/ApplyModalCommons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ApplyModal/ApplyModalCommons.js -------------------------------------------------------------------------------- /ui/components/misc/ApplyModal/ApplyModalFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ApplyModal/ApplyModalFields.js -------------------------------------------------------------------------------- /ui/components/misc/ApplyModal/CodeTextField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ApplyModal/CodeTextField.vue -------------------------------------------------------------------------------- /ui/components/misc/ApplyModal/ConflictWarning.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ApplyModal/ConflictWarning.vue -------------------------------------------------------------------------------- /ui/components/misc/ApplyModal/OrderSlider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ApplyModal/OrderSlider.vue -------------------------------------------------------------------------------- /ui/components/misc/ApplyModal/TitleTextField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ApplyModal/TitleTextField.vue -------------------------------------------------------------------------------- /ui/components/misc/CategoryModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/CategoryModal.vue -------------------------------------------------------------------------------- /ui/components/misc/ConfigModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ConfigModal.vue -------------------------------------------------------------------------------- /ui/components/misc/EnvironmentModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/EnvironmentModal.vue -------------------------------------------------------------------------------- /ui/components/misc/Navigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/Navigation.vue -------------------------------------------------------------------------------- /ui/components/misc/NavigationLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/NavigationLink.vue -------------------------------------------------------------------------------- /ui/components/misc/NotificationArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/NotificationArea.vue -------------------------------------------------------------------------------- /ui/components/misc/NotificationCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/NotificationCard.vue -------------------------------------------------------------------------------- /ui/components/misc/ProblemModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ProblemModal.vue -------------------------------------------------------------------------------- /ui/components/misc/ProblemModal/NewCandidates.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ProblemModal/NewCandidates.vue -------------------------------------------------------------------------------- /ui/components/misc/ProblemModal/NewCandidatesIconButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ProblemModal/NewCandidatesIconButton.vue -------------------------------------------------------------------------------- /ui/components/misc/ProblemModal/NewCandidatesItemField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ProblemModal/NewCandidatesItemField.vue -------------------------------------------------------------------------------- /ui/components/misc/ProblemModal/NewCandidatesNarrowTextField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ProblemModal/NewCandidatesNarrowTextField.vue -------------------------------------------------------------------------------- /ui/components/misc/ScrollButtons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/ScrollButtons.vue -------------------------------------------------------------------------------- /ui/components/misc/TeamDetailsCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/TeamDetailsCard.vue -------------------------------------------------------------------------------- /ui/components/misc/TeamModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/TeamModal.vue -------------------------------------------------------------------------------- /ui/components/misc/Timer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/misc/Timer.vue -------------------------------------------------------------------------------- /ui/components/problems/Attention.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/Attention.vue -------------------------------------------------------------------------------- /ui/components/problems/Category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/Category.vue -------------------------------------------------------------------------------- /ui/components/problems/Flow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/Flow.vue -------------------------------------------------------------------------------- /ui/components/problems/FlowItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/FlowItem.vue -------------------------------------------------------------------------------- /ui/components/problems/ProblemCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/ProblemCard.vue -------------------------------------------------------------------------------- /ui/components/problems/ProblemCardPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/ProblemCardPlayer.vue -------------------------------------------------------------------------------- /ui/components/problems/ProblemCardStaff.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/ProblemCardStaff.vue -------------------------------------------------------------------------------- /ui/components/problems/id/AnswerCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/AnswerCard.vue -------------------------------------------------------------------------------- /ui/components/problems/id/AnswerForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/AnswerForm.vue -------------------------------------------------------------------------------- /ui/components/problems/id/AnswerFormCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/AnswerFormCheckbox.vue -------------------------------------------------------------------------------- /ui/components/problems/id/AnswerFormRadioButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/AnswerFormRadioButton.vue -------------------------------------------------------------------------------- /ui/components/problems/id/AnswerPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/AnswerPanel.vue -------------------------------------------------------------------------------- /ui/components/problems/id/DetailsPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/DetailsPanel.vue -------------------------------------------------------------------------------- /ui/components/problems/id/EnvironmentArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/EnvironmentArea.vue -------------------------------------------------------------------------------- /ui/components/problems/id/EnvironmentTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/EnvironmentTable.vue -------------------------------------------------------------------------------- /ui/components/problems/id/GradingForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/GradingForm.vue -------------------------------------------------------------------------------- /ui/components/problems/id/GradingSlider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/GradingSlider.vue -------------------------------------------------------------------------------- /ui/components/problems/id/InfoChipsArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/InfoChipsArea.vue -------------------------------------------------------------------------------- /ui/components/problems/id/IssueCommentCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/IssueCommentCard.vue -------------------------------------------------------------------------------- /ui/components/problems/id/IssuePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/IssuePanel.vue -------------------------------------------------------------------------------- /ui/components/problems/id/PenaltyCounter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/PenaltyCounter.vue -------------------------------------------------------------------------------- /ui/components/problems/id/SupplementArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/SupplementArea.vue -------------------------------------------------------------------------------- /ui/components/problems/id/SupplementCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/problems/id/SupplementCard.vue -------------------------------------------------------------------------------- /ui/components/settings/ConfigTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/settings/ConfigTable.vue -------------------------------------------------------------------------------- /ui/components/settings/DeleteComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/settings/DeleteComponent.vue -------------------------------------------------------------------------------- /ui/components/settings/DeleteComponentArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/settings/DeleteComponentArea.vue -------------------------------------------------------------------------------- /ui/components/settings/ExportImportButtons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/settings/ExportImportButtons.vue -------------------------------------------------------------------------------- /ui/components/settings/ExportScoresButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/settings/ExportScoresButton.vue -------------------------------------------------------------------------------- /ui/components/settings/ImportModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/settings/ImportModal.vue -------------------------------------------------------------------------------- /ui/components/settings/ItemSelectButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/settings/ItemSelectButton.vue -------------------------------------------------------------------------------- /ui/components/settings/RegradeAnswersModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/settings/RegradeAnswersModal.vue -------------------------------------------------------------------------------- /ui/components/settings/SessionTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/settings/SessionTable.vue -------------------------------------------------------------------------------- /ui/components/summary/ReportCardTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/summary/ReportCardTable.vue -------------------------------------------------------------------------------- /ui/components/teams/TeamCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/teams/TeamCard.vue -------------------------------------------------------------------------------- /ui/components/top/NoticeCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/top/NoticeCard.vue -------------------------------------------------------------------------------- /ui/components/top/NoticeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/top/NoticeModal.vue -------------------------------------------------------------------------------- /ui/components/top/NoticePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/top/NoticePanel.vue -------------------------------------------------------------------------------- /ui/components/top/PanelLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/top/PanelLabel.vue -------------------------------------------------------------------------------- /ui/components/top/ScoreboardCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/top/ScoreboardCard.vue -------------------------------------------------------------------------------- /ui/components/top/ScoreboardGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/top/ScoreboardGroup.vue -------------------------------------------------------------------------------- /ui/components/top/ScoreboardPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/components/top/ScoreboardPanel.vue -------------------------------------------------------------------------------- /ui/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/jest.config.js -------------------------------------------------------------------------------- /ui/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/layouts/default.vue -------------------------------------------------------------------------------- /ui/node_modules: -------------------------------------------------------------------------------- 1 | /usr/local/share/node_modules -------------------------------------------------------------------------------- /ui/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/nuxt.config.js -------------------------------------------------------------------------------- /ui/orm/Answer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Answer.js -------------------------------------------------------------------------------- /ui/orm/BaseModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/BaseModel.js -------------------------------------------------------------------------------- /ui/orm/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Category.js -------------------------------------------------------------------------------- /ui/orm/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Config.js -------------------------------------------------------------------------------- /ui/orm/Issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Issue.js -------------------------------------------------------------------------------- /ui/orm/IssueComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/IssueComment.js -------------------------------------------------------------------------------- /ui/orm/Mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Mutations.js -------------------------------------------------------------------------------- /ui/orm/Notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Notice.js -------------------------------------------------------------------------------- /ui/orm/Penalty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Penalty.js -------------------------------------------------------------------------------- /ui/orm/Problem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Problem.js -------------------------------------------------------------------------------- /ui/orm/ProblemBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/ProblemBody.js -------------------------------------------------------------------------------- /ui/orm/ProblemEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/ProblemEnvironment.js -------------------------------------------------------------------------------- /ui/orm/ProblemSupplement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/ProblemSupplement.js -------------------------------------------------------------------------------- /ui/orm/Queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Queries.js -------------------------------------------------------------------------------- /ui/orm/ReportCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/ReportCard.js -------------------------------------------------------------------------------- /ui/orm/Scoreboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Scoreboard.js -------------------------------------------------------------------------------- /ui/orm/Session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Session.js -------------------------------------------------------------------------------- /ui/orm/Team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/Team.js -------------------------------------------------------------------------------- /ui/orm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/orm/index.js -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/pages/answers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/pages/answers.vue -------------------------------------------------------------------------------- /ui/pages/guide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/pages/guide.vue -------------------------------------------------------------------------------- /ui/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/pages/index.vue -------------------------------------------------------------------------------- /ui/pages/issues.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/pages/issues.vue -------------------------------------------------------------------------------- /ui/pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/pages/login.vue -------------------------------------------------------------------------------- /ui/pages/problems/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/pages/problems/_id.vue -------------------------------------------------------------------------------- /ui/pages/problems/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/pages/problems/index.vue -------------------------------------------------------------------------------- /ui/pages/settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/pages/settings.vue -------------------------------------------------------------------------------- /ui/pages/summary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/pages/summary.vue -------------------------------------------------------------------------------- /ui/pages/teams.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/pages/teams.vue -------------------------------------------------------------------------------- /ui/plugins/apollo-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/plugins/apollo-client.js -------------------------------------------------------------------------------- /ui/plugins/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/plugins/axios.js -------------------------------------------------------------------------------- /ui/plugins/elvis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/plugins/elvis.js -------------------------------------------------------------------------------- /ui/plugins/eventsource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/plugins/eventsource.js -------------------------------------------------------------------------------- /ui/plugins/json-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/plugins/json-storage.js -------------------------------------------------------------------------------- /ui/plugins/mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/plugins/mixins.js -------------------------------------------------------------------------------- /ui/plugins/moment-update-locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/plugins/moment-update-locale.js -------------------------------------------------------------------------------- /ui/plugins/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/plugins/push.js -------------------------------------------------------------------------------- /ui/plugins/vue-clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/plugins/vue-clipboard.js -------------------------------------------------------------------------------- /ui/plugins/vue-underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/plugins/vue-underscore.js -------------------------------------------------------------------------------- /ui/plugins/vuex-orm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/plugins/vuex-orm.js -------------------------------------------------------------------------------- /ui/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/static/favicon.png -------------------------------------------------------------------------------- /ui/store/contestInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/store/contestInfo.js -------------------------------------------------------------------------------- /ui/store/index.js: -------------------------------------------------------------------------------- 1 | export const state = () => ({}) 2 | -------------------------------------------------------------------------------- /ui/store/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/store/notification.js -------------------------------------------------------------------------------- /ui/store/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/store/session.js -------------------------------------------------------------------------------- /ui/store/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/store/time.js -------------------------------------------------------------------------------- /ui/test/Logo.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/test/Logo.spec.js -------------------------------------------------------------------------------- /ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/ui/yarn.lock -------------------------------------------------------------------------------- /yamllint/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ictsc/ictsc-score-server/HEAD/yamllint/Dockerfile --------------------------------------------------------------------------------