├── .flake8 ├── .github └── workflows │ ├── changelog.yml │ ├── docker-image.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── NEWS ├── README.md ├── config ├── __init__.py └── settings │ ├── __init__.py │ ├── config_testing.py │ ├── config_testing_tenant.py │ └── devel.py ├── docker ├── README.md ├── server-entrypoint.sh ├── server.dockerfile ├── worker-entrypoint.sh └── worker.dockerfile ├── manage.py ├── poetry.lock ├── pyproject.toml ├── releases ├── 0.10.0-rc.1.md ├── 0.10.0-rc.2.md ├── 0.10.0.md ├── 0.11.0-rc.1.md ├── 0.11.0.md ├── 0.11.1-rc.1.md ├── 0.11.1.md ├── 0.12.0-rc.1.md ├── 0.12.0.md ├── 0.13.0-rc.1.md ├── 0.13.0.md ├── 0.13.1-rc.1.md ├── 0.14.0-rc.1.md ├── 0.14.0.md ├── 0.15.0-rc.1.md ├── 0.15.0.md ├── 0.15.1-rc.1.md ├── 0.16.0.md ├── 0.17.0-rc.1.md ├── 0.17.0.md ├── 0.18.0-rc.1.md ├── 0.18.0.md ├── 0.19.0-rc.1.md ├── 0.19.0-rc.2.md ├── 0.19.0.md ├── 0.19.1-rc.1.md ├── 0.19.1.md ├── 0.19.2-rc.1.md ├── 0.19.2.md ├── 0.20.0-rc.1.md ├── 0.20.0.md ├── 0.21.0-rc.1.md ├── 0.21.0.md ├── 0.21.1-rc.1.md ├── 0.21.1.md ├── 0.21.2-rc.1.md ├── 0.21.2.md ├── 0.7.20.md ├── 0.7.21-rc.1.md ├── 0.7.21-rc.2.md ├── 0.7.21-rc.3.md ├── 0.7.21-rc.4.md ├── 0.7.21-rc.5.md ├── 0.7.21-rc.6.md ├── 0.7.21.md ├── 0.7.22-rc.1.md ├── 0.7.22-rc.2.md ├── 0.7.22.md ├── 0.7.23.md ├── 0.8.0-rc.1.md ├── 0.8.0-rc.2.md ├── 0.8.0-rc.3.md ├── 0.8.0-rc.4.md ├── 0.8.0-rc.5.md ├── 0.8.0-rc.6.md ├── 0.8.0-rc.7.md ├── 0.8.0-rc.8.md ├── 0.8.0-rc.9.md ├── 0.8.0.md ├── 0.8.1.md ├── 0.9.0-rc.1.md ├── 0.9.0-rc.2.md ├── 0.9.0.md ├── 0.9.1.md ├── 0.9.2.md ├── 0.9.3.md ├── 1.0.0-rc.1.md ├── 1.0.0-rc.2.md ├── 1.0.0-rc.3.md ├── 1.0.0.md ├── 1.0.1-rc.1.md ├── 1.0.1.md ├── 1.0.2-rc.1.md ├── 1.0.2.md ├── 1.1.0-rc.1.md ├── 1.1.0.md ├── 1.10.0-rc.1.md ├── 1.10.0.md ├── 1.10.1.md ├── 1.11.0-rc.1.md ├── 1.11.0-rc.2.md ├── 1.11.0-rc.3.md ├── 1.11.0.md ├── 1.12.0-rc.1.md ├── 1.12.0.md ├── 1.12.1-rc.1.md ├── 1.12.1-rc.2.md ├── 1.12.1.md ├── 1.12.2-rc.1.md ├── 1.12.2.md ├── 1.12.3-rc.1.md ├── 1.12.3.md ├── 1.2.0-rc.1.md ├── 1.2.0.md ├── 1.2.1-rc.1.md ├── 1.2.1.md ├── 1.3.0-rc.1.md ├── 1.3.0.md ├── 1.4.0-rc.1.md ├── 1.4.0.md ├── 1.5.0-rc.1.md ├── 1.5.0.md ├── 1.5.1-rc.1.md ├── 1.5.1.md ├── 1.6.0-rc.1.md ├── 1.6.0.md ├── 1.6.1-rc.1.md ├── 1.6.1.md ├── 1.6.2-rc.1.md ├── 1.6.2.md ├── 1.7.0-rc.1.md ├── 1.7.0.md ├── 1.7.1-rc.1.md ├── 1.7.1.md ├── 1.8.0-rc.1.md ├── 1.8.0.md ├── 1.9.0-rc.1.md ├── 1.9.0.md ├── 1.9.1-rc.1.md ├── 1.9.1.md ├── 1.9.2-rc.1.md └── 1.9.2.md ├── requirements_dev.txt ├── sortinghat ├── _version.py ├── app │ ├── __init__.py │ ├── schema.py │ ├── urls.py │ └── wsgi.py ├── cli │ ├── __init__.py │ ├── client │ │ ├── __init__.py │ │ ├── client.py │ │ └── schema.py │ ├── cmds │ │ ├── __init__.py │ │ ├── add.py │ │ ├── config.py │ │ ├── countries.py │ │ ├── enroll.py │ │ ├── lock.py │ │ ├── merge.py │ │ ├── mv.py │ │ ├── orgs.py │ │ ├── profile.py │ │ ├── rm.py │ │ ├── show.py │ │ ├── split.py │ │ └── withdraw.py │ ├── sortinghat.py │ ├── templates │ │ ├── add.tmpl │ │ ├── config.tmpl │ │ ├── countries.tmpl │ │ ├── lock.tmpl │ │ ├── mv.tmpl │ │ ├── organizations.tmpl │ │ ├── profile.tmpl │ │ ├── rm.tmpl │ │ ├── show.tmpl │ │ └── split.tmpl │ └── utils.py ├── config │ ├── __init__.py │ ├── permission_groups.json │ ├── settings.py │ └── tenants.json ├── core │ ├── admin.py │ ├── api.py │ ├── apps.py │ ├── aux.py │ ├── context.py │ ├── db.py │ ├── decorators.py │ ├── errors.py │ ├── fixtures │ │ └── countries.json │ ├── importer │ │ ├── backend.py │ │ ├── backends │ │ │ ├── gitdm.py │ │ │ └── mailmap.py │ │ ├── base.py │ │ ├── models.py │ │ └── utils.py │ ├── jobs.py │ ├── log.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── create_groups.py │ │ │ └── set_permissions.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_sortinghat.py │ │ ├── 0002_importidentitiestask.py │ │ ├── 0003_multi_tenancy.py │ │ ├── 0004_tenant_using_header.py │ │ ├── 0005_scheduledtask.py │ │ ├── 0006_unify_scheduled_tasks.py │ │ ├── 0007_delete_importidentitiestask.py │ │ ├── 0008_alias.py │ │ ├── 0009_tenant_perm_group.py │ │ ├── 0010_alter_individual_options_individual_last_reviewed.py │ │ └── __init__.py │ ├── models.py │ ├── recommendations │ │ ├── __init__.py │ │ ├── affiliation.py │ │ ├── engine.py │ │ ├── exclusion.py │ │ ├── gender.py │ │ └── matching.py │ ├── schema.py │ ├── tenant.py │ └── views.py ├── server │ ├── __init__.py │ ├── sortinghat_admin.py │ ├── sortinghatd.py │ ├── sortinghatw.py │ └── utils │ │ └── create_sh_0_7_fixture.py └── utils │ └── __init__.py ├── tests ├── __init__.py ├── cli │ ├── __init__.py │ ├── config_file.cfg │ ├── test_cmd_add.py │ ├── test_cmd_config.py │ ├── test_cmd_countries.py │ ├── test_cmd_enroll.py │ ├── test_cmd_lock.py │ ├── test_cmd_merge.py │ ├── test_cmd_mv.py │ ├── test_cmd_orgs.py │ ├── test_cmd_profile.py │ ├── test_cmd_rm.py │ ├── test_cmd_show.py │ ├── test_cmd_split.py │ └── test_cmd_withdraw.py ├── importer │ ├── __init__.py │ ├── data │ │ └── gitdm │ │ │ ├── gitdm_email_aliases_valid.txt │ │ │ ├── gitdm_email_to_employer_invalid.txt │ │ │ └── gitdm_email_to_employer_valid.txt │ ├── mocked_package │ │ ├── __init__.py │ │ ├── backend_a.py │ │ └── nested_package │ │ │ ├── __init__.py │ │ │ ├── nested_backend_b.py │ │ │ ├── nested_backend_c.py │ │ │ └── nested_not_backend.py │ ├── test_backend.py │ ├── test_gitdm.py │ └── test_utils.py ├── rec │ ├── __init__.py │ ├── test_affiliations.py │ ├── test_engine.py │ ├── test_exclusion.py │ ├── test_gender.py │ └── test_matches.py ├── runners.py ├── tenants │ ├── __init__.py │ ├── test_jobs.py │ ├── test_middleware.py │ └── test_schema.py ├── test_api.py ├── test_aux.py ├── test_client.py ├── test_db.py ├── test_errors.py ├── test_jobs.py ├── test_log.py ├── test_model.py ├── test_schema.py └── test_utils.py └── ui ├── .eslintrc.js ├── .storybook ├── main.js ├── preview-head.html └── preview.js ├── README.md ├── babel.config.js ├── cypress.config.js ├── jest.config.js ├── package.json ├── public ├── favicon-grimoirelab.ico └── index.html ├── src ├── App.vue ├── apollo │ ├── fragments.js │ ├── mutations.js │ └── queries.js ├── assets │ ├── fonts │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Italic.woff │ │ ├── Roboto-Italic.woff2 │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-LightItalic.woff │ │ ├── Roboto-LightItalic.woff2 │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-MediumItalic.woff │ │ ├── Roboto-MediumItalic.woff2 │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ └── Roboto-Regular.woff2 │ ├── logo.png │ └── logo.svg ├── components │ ├── Avatar.stories.js │ ├── Avatar.vue │ ├── ChangeLog.stories.js │ ├── ChangeLog.vue │ ├── DateInput.stories.js │ ├── DateInput.vue │ ├── EditDialog.vue │ ├── EnrollModal.stories.js │ ├── EnrollModal.vue │ ├── EnrollmentList.stories.js │ ├── EnrollmentList.vue │ ├── ExpandedIndividual.stories.js │ ├── ExpandedIndividual.vue │ ├── ExpandedOrganization.stories.js │ ├── ExpandedOrganization.vue │ ├── GenericModal.stories.js │ ├── GenericModal.vue │ ├── GerritIcon.vue │ ├── IdentitiesList.stories.js │ ├── IdentitiesList.vue │ ├── Identity.vue │ ├── ImporterModal.stories.js │ ├── ImporterModal.vue │ ├── Indentity.stories.js │ ├── IndividualCard.stories.js │ ├── IndividualCard.vue │ ├── IndividualEntry.stories.js │ ├── IndividualEntry.vue │ ├── IndividualsData.vue │ ├── IndividualsGrid.stories.js │ ├── IndividualsGrid.vue │ ├── IndividualsTable.stories.js │ ├── IndividualsTable.vue │ ├── JobModal.stories.js │ ├── JobModal.vue │ ├── JobsTable.stories.js │ ├── JobsTable.vue │ ├── LoadingSpinner.stories.js │ ├── LoadingSpinner.vue │ ├── MatchesModal.stories.js │ ├── MatchesModal.vue │ ├── OrganizationEntry.stories.js │ ├── OrganizationEntry.vue │ ├── OrganizationModal.stories.js │ ├── OrganizationModal.vue │ ├── OrganizationSelector.stories.js │ ├── OrganizationSelector.vue │ ├── OrganizationsTable.stories.js │ ├── OrganizationsTable.vue │ ├── ProfileCard.stories.js │ ├── ProfileCard.vue │ ├── ProfileList.vue │ ├── ProfileModal.stories.js │ ├── ProfileModal.vue │ ├── Recommendation.stories.js │ ├── Recommendations.vue │ ├── Search.stories.js │ ├── Search.vue │ ├── TasksTable.stories.js │ ├── TasksTable.vue │ ├── TeamEnrollModal.stories.js │ ├── TeamEnrollModal.vue │ ├── WorkSpace.stories.js │ └── WorkSpace.vue ├── composables │ └── useModal.js ├── main.js ├── mixins │ └── enroll.js ├── plugins │ ├── dateFormatter.js │ ├── errors.js │ ├── logger.js │ └── vuetify.js ├── router │ └── index.js ├── store │ └── index.js ├── styles │ ├── _typography.scss │ └── index.scss ├── utils │ └── actions.js └── views │ ├── ChangePassword.vue │ ├── Dashboard.vue │ ├── Individual.vue │ ├── Jobs.vue │ ├── Login.vue │ ├── Organization.vue │ ├── SearchHelp.vue │ ├── SettingsGeneral.vue │ ├── SettingsLayout.vue │ └── SettingsSync.vue ├── tests ├── e2e │ ├── .eslintrc.js │ ├── specs │ │ └── spec.cy.js │ ├── support │ │ ├── commands.js │ │ └── index.js │ └── utils │ │ └── graphql-test-utils.js ├── setup.js └── unit │ ├── __snapshots__ │ ├── individual.spec.js.snap │ ├── mutations.spec.js.snap │ ├── queries.spec.js.snap │ └── storybook.spec.js.snap │ ├── dateInput.spec.js │ ├── errors.spec.js │ ├── individual.spec.js │ ├── logger.spec.js │ ├── mutations.spec.js │ ├── queries.spec.js │ ├── search.spec.js │ ├── storybook.spec.js │ └── workspace.spec.js ├── vue.config.js └── yarn.lock /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/config_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/config/settings/config_testing.py -------------------------------------------------------------------------------- /config/settings/config_testing_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/config/settings/config_testing_tenant.py -------------------------------------------------------------------------------- /config/settings/devel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/config/settings/devel.py -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/server-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/docker/server-entrypoint.sh -------------------------------------------------------------------------------- /docker/server.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/docker/server.dockerfile -------------------------------------------------------------------------------- /docker/worker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/docker/worker-entrypoint.sh -------------------------------------------------------------------------------- /docker/worker.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/docker/worker.dockerfile -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/manage.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/pyproject.toml -------------------------------------------------------------------------------- /releases/0.10.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.10.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.10.0-rc.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.10.0-rc.2.md -------------------------------------------------------------------------------- /releases/0.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.10.0.md -------------------------------------------------------------------------------- /releases/0.11.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.11.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.11.0.md -------------------------------------------------------------------------------- /releases/0.11.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.11.1-rc.1.md -------------------------------------------------------------------------------- /releases/0.11.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.11.1.md -------------------------------------------------------------------------------- /releases/0.12.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.12.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.12.0.md -------------------------------------------------------------------------------- /releases/0.13.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.13.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.13.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.13.0.md -------------------------------------------------------------------------------- /releases/0.13.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.13.1-rc.1.md -------------------------------------------------------------------------------- /releases/0.14.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.14.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.14.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.14.0.md -------------------------------------------------------------------------------- /releases/0.15.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.15.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.15.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.15.0.md -------------------------------------------------------------------------------- /releases/0.15.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.15.1-rc.1.md -------------------------------------------------------------------------------- /releases/0.16.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.16.0.md -------------------------------------------------------------------------------- /releases/0.17.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.17.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.17.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.17.0.md -------------------------------------------------------------------------------- /releases/0.18.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.18.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.18.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.18.0.md -------------------------------------------------------------------------------- /releases/0.19.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.19.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.19.0-rc.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.19.0-rc.2.md -------------------------------------------------------------------------------- /releases/0.19.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.19.0.md -------------------------------------------------------------------------------- /releases/0.19.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.19.1-rc.1.md -------------------------------------------------------------------------------- /releases/0.19.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.19.1.md -------------------------------------------------------------------------------- /releases/0.19.2-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.19.2-rc.1.md -------------------------------------------------------------------------------- /releases/0.19.2.md: -------------------------------------------------------------------------------- 1 | ## sortinghat 0.19.2 - (2024-02-08) 2 | 3 | * Update Poetry's package dependencies 4 | -------------------------------------------------------------------------------- /releases/0.20.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.20.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.20.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.20.0.md -------------------------------------------------------------------------------- /releases/0.21.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.21.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.21.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.21.0.md -------------------------------------------------------------------------------- /releases/0.21.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.21.1-rc.1.md -------------------------------------------------------------------------------- /releases/0.21.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.21.1.md -------------------------------------------------------------------------------- /releases/0.21.2-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.21.2-rc.1.md -------------------------------------------------------------------------------- /releases/0.21.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.21.2.md -------------------------------------------------------------------------------- /releases/0.7.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.7.20.md -------------------------------------------------------------------------------- /releases/0.7.21-rc.1.md: -------------------------------------------------------------------------------- 1 | ## sortinghat 0.7.21-rc.1 - (2022-09-06) 2 | 3 | * Update Poetry's package dependencies 4 | -------------------------------------------------------------------------------- /releases/0.7.21-rc.2.md: -------------------------------------------------------------------------------- 1 | ## sortinghat 0.7.21-rc.2 - (2022-09-09) 2 | 3 | * Update Poetry's package dependencies 4 | -------------------------------------------------------------------------------- /releases/0.7.21-rc.3.md: -------------------------------------------------------------------------------- 1 | ## sortinghat 0.7.21-rc.3 - (2022-09-23) 2 | 3 | * Update Poetry's package dependencies 4 | -------------------------------------------------------------------------------- /releases/0.7.21-rc.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.7.21-rc.4.md -------------------------------------------------------------------------------- /releases/0.7.21-rc.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.7.21-rc.5.md -------------------------------------------------------------------------------- /releases/0.7.21-rc.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.7.21-rc.6.md -------------------------------------------------------------------------------- /releases/0.7.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.7.21.md -------------------------------------------------------------------------------- /releases/0.7.22-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.7.22-rc.1.md -------------------------------------------------------------------------------- /releases/0.7.22-rc.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.7.22-rc.2.md -------------------------------------------------------------------------------- /releases/0.7.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.7.22.md -------------------------------------------------------------------------------- /releases/0.7.23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.7.23.md -------------------------------------------------------------------------------- /releases/0.8.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.8.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.8.0-rc.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.8.0-rc.2.md -------------------------------------------------------------------------------- /releases/0.8.0-rc.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.8.0-rc.3.md -------------------------------------------------------------------------------- /releases/0.8.0-rc.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.8.0-rc.4.md -------------------------------------------------------------------------------- /releases/0.8.0-rc.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.8.0-rc.5.md -------------------------------------------------------------------------------- /releases/0.8.0-rc.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.8.0-rc.6.md -------------------------------------------------------------------------------- /releases/0.8.0-rc.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.8.0-rc.7.md -------------------------------------------------------------------------------- /releases/0.8.0-rc.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.8.0-rc.8.md -------------------------------------------------------------------------------- /releases/0.8.0-rc.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.8.0-rc.9.md -------------------------------------------------------------------------------- /releases/0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.8.0.md -------------------------------------------------------------------------------- /releases/0.8.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.8.1.md -------------------------------------------------------------------------------- /releases/0.9.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.9.0-rc.1.md -------------------------------------------------------------------------------- /releases/0.9.0-rc.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.9.0-rc.2.md -------------------------------------------------------------------------------- /releases/0.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.9.0.md -------------------------------------------------------------------------------- /releases/0.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.9.1.md -------------------------------------------------------------------------------- /releases/0.9.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.9.2.md -------------------------------------------------------------------------------- /releases/0.9.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/0.9.3.md -------------------------------------------------------------------------------- /releases/1.0.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.0.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.0.0-rc.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.0.0-rc.2.md -------------------------------------------------------------------------------- /releases/1.0.0-rc.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.0.0-rc.3.md -------------------------------------------------------------------------------- /releases/1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.0.0.md -------------------------------------------------------------------------------- /releases/1.0.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.0.1-rc.1.md -------------------------------------------------------------------------------- /releases/1.0.1.md: -------------------------------------------------------------------------------- 1 | ## sortinghat 1.0.1 - (2024-05-09) 2 | 3 | * Update Poetry's package dependencies 4 | -------------------------------------------------------------------------------- /releases/1.0.2-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.0.2-rc.1.md -------------------------------------------------------------------------------- /releases/1.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.0.2.md -------------------------------------------------------------------------------- /releases/1.1.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.1.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.1.0.md -------------------------------------------------------------------------------- /releases/1.10.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.10.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.10.0.md -------------------------------------------------------------------------------- /releases/1.10.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.10.1.md -------------------------------------------------------------------------------- /releases/1.11.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.11.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.11.0-rc.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.11.0-rc.2.md -------------------------------------------------------------------------------- /releases/1.11.0-rc.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.11.0-rc.3.md -------------------------------------------------------------------------------- /releases/1.11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.11.0.md -------------------------------------------------------------------------------- /releases/1.12.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.12.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.12.0.md -------------------------------------------------------------------------------- /releases/1.12.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.12.1-rc.1.md -------------------------------------------------------------------------------- /releases/1.12.1-rc.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.12.1-rc.2.md -------------------------------------------------------------------------------- /releases/1.12.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.12.1.md -------------------------------------------------------------------------------- /releases/1.12.2-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.12.2-rc.1.md -------------------------------------------------------------------------------- /releases/1.12.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.12.2.md -------------------------------------------------------------------------------- /releases/1.12.3-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.12.3-rc.1.md -------------------------------------------------------------------------------- /releases/1.12.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.12.3.md -------------------------------------------------------------------------------- /releases/1.2.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.2.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.2.0.md -------------------------------------------------------------------------------- /releases/1.2.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.2.1-rc.1.md -------------------------------------------------------------------------------- /releases/1.2.1.md: -------------------------------------------------------------------------------- 1 | ## sortinghat 1.2.1 - (2024-08-13) 2 | 3 | * Update Poetry's package dependencies 4 | -------------------------------------------------------------------------------- /releases/1.3.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.3.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.3.0.md -------------------------------------------------------------------------------- /releases/1.4.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.4.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.4.0.md -------------------------------------------------------------------------------- /releases/1.5.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.5.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.5.0.md -------------------------------------------------------------------------------- /releases/1.5.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.5.1-rc.1.md -------------------------------------------------------------------------------- /releases/1.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.5.1.md -------------------------------------------------------------------------------- /releases/1.6.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.6.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.6.0.md -------------------------------------------------------------------------------- /releases/1.6.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.6.1-rc.1.md -------------------------------------------------------------------------------- /releases/1.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.6.1.md -------------------------------------------------------------------------------- /releases/1.6.2-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.6.2-rc.1.md -------------------------------------------------------------------------------- /releases/1.6.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.6.2.md -------------------------------------------------------------------------------- /releases/1.7.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.7.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.7.0.md -------------------------------------------------------------------------------- /releases/1.7.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.7.1-rc.1.md -------------------------------------------------------------------------------- /releases/1.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.7.1.md -------------------------------------------------------------------------------- /releases/1.8.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.8.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.8.0.md -------------------------------------------------------------------------------- /releases/1.9.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.9.0-rc.1.md -------------------------------------------------------------------------------- /releases/1.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.9.0.md -------------------------------------------------------------------------------- /releases/1.9.1-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.9.1-rc.1.md -------------------------------------------------------------------------------- /releases/1.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.9.1.md -------------------------------------------------------------------------------- /releases/1.9.2-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/releases/1.9.2-rc.1.md -------------------------------------------------------------------------------- /releases/1.9.2.md: -------------------------------------------------------------------------------- 1 | ## sortinghat 1.9.2 - (2025-06-19) 2 | 3 | * Update Poetry's package dependencies 4 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /sortinghat/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/_version.py -------------------------------------------------------------------------------- /sortinghat/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sortinghat/app/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/app/schema.py -------------------------------------------------------------------------------- /sortinghat/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/app/urls.py -------------------------------------------------------------------------------- /sortinghat/app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/app/wsgi.py -------------------------------------------------------------------------------- /sortinghat/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sortinghat/cli/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/client/__init__.py -------------------------------------------------------------------------------- /sortinghat/cli/client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/client/client.py -------------------------------------------------------------------------------- /sortinghat/cli/client/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/client/schema.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sortinghat/cli/cmds/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/add.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/config.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/countries.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/enroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/enroll.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/lock.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/merge.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/mv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/mv.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/orgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/orgs.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/profile.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/rm.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/show.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/split.py -------------------------------------------------------------------------------- /sortinghat/cli/cmds/withdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/cmds/withdraw.py -------------------------------------------------------------------------------- /sortinghat/cli/sortinghat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/sortinghat.py -------------------------------------------------------------------------------- /sortinghat/cli/templates/add.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/templates/add.tmpl -------------------------------------------------------------------------------- /sortinghat/cli/templates/config.tmpl: -------------------------------------------------------------------------------- 1 | {{ key }} {{ option }} 2 | -------------------------------------------------------------------------------- /sortinghat/cli/templates/countries.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/templates/countries.tmpl -------------------------------------------------------------------------------- /sortinghat/cli/templates/lock.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/templates/lock.tmpl -------------------------------------------------------------------------------- /sortinghat/cli/templates/mv.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/templates/mv.tmpl -------------------------------------------------------------------------------- /sortinghat/cli/templates/organizations.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/templates/organizations.tmpl -------------------------------------------------------------------------------- /sortinghat/cli/templates/profile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/templates/profile.tmpl -------------------------------------------------------------------------------- /sortinghat/cli/templates/rm.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/templates/rm.tmpl -------------------------------------------------------------------------------- /sortinghat/cli/templates/show.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/templates/show.tmpl -------------------------------------------------------------------------------- /sortinghat/cli/templates/split.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/templates/split.tmpl -------------------------------------------------------------------------------- /sortinghat/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/cli/utils.py -------------------------------------------------------------------------------- /sortinghat/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sortinghat/config/permission_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/config/permission_groups.json -------------------------------------------------------------------------------- /sortinghat/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/config/settings.py -------------------------------------------------------------------------------- /sortinghat/config/tenants.json: -------------------------------------------------------------------------------- 1 | { 2 | "tenants": [] 3 | } 4 | -------------------------------------------------------------------------------- /sortinghat/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/admin.py -------------------------------------------------------------------------------- /sortinghat/core/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/api.py -------------------------------------------------------------------------------- /sortinghat/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/apps.py -------------------------------------------------------------------------------- /sortinghat/core/aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/aux.py -------------------------------------------------------------------------------- /sortinghat/core/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/context.py -------------------------------------------------------------------------------- /sortinghat/core/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/db.py -------------------------------------------------------------------------------- /sortinghat/core/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/decorators.py -------------------------------------------------------------------------------- /sortinghat/core/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/errors.py -------------------------------------------------------------------------------- /sortinghat/core/fixtures/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/fixtures/countries.json -------------------------------------------------------------------------------- /sortinghat/core/importer/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/importer/backend.py -------------------------------------------------------------------------------- /sortinghat/core/importer/backends/gitdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/importer/backends/gitdm.py -------------------------------------------------------------------------------- /sortinghat/core/importer/backends/mailmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/importer/backends/mailmap.py -------------------------------------------------------------------------------- /sortinghat/core/importer/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/importer/base.py -------------------------------------------------------------------------------- /sortinghat/core/importer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/importer/models.py -------------------------------------------------------------------------------- /sortinghat/core/importer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/importer/utils.py -------------------------------------------------------------------------------- /sortinghat/core/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/jobs.py -------------------------------------------------------------------------------- /sortinghat/core/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/log.py -------------------------------------------------------------------------------- /sortinghat/core/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sortinghat/core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sortinghat/core/management/commands/create_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/management/commands/create_groups.py -------------------------------------------------------------------------------- /sortinghat/core/management/commands/set_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/management/commands/set_permissions.py -------------------------------------------------------------------------------- /sortinghat/core/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/middleware.py -------------------------------------------------------------------------------- /sortinghat/core/migrations/0001_sortinghat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/migrations/0001_sortinghat.py -------------------------------------------------------------------------------- /sortinghat/core/migrations/0002_importidentitiestask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/migrations/0002_importidentitiestask.py -------------------------------------------------------------------------------- /sortinghat/core/migrations/0003_multi_tenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/migrations/0003_multi_tenancy.py -------------------------------------------------------------------------------- /sortinghat/core/migrations/0004_tenant_using_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/migrations/0004_tenant_using_header.py -------------------------------------------------------------------------------- /sortinghat/core/migrations/0005_scheduledtask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/migrations/0005_scheduledtask.py -------------------------------------------------------------------------------- /sortinghat/core/migrations/0006_unify_scheduled_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/migrations/0006_unify_scheduled_tasks.py -------------------------------------------------------------------------------- /sortinghat/core/migrations/0007_delete_importidentitiestask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/migrations/0007_delete_importidentitiestask.py -------------------------------------------------------------------------------- /sortinghat/core/migrations/0008_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/migrations/0008_alias.py -------------------------------------------------------------------------------- /sortinghat/core/migrations/0009_tenant_perm_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/migrations/0009_tenant_perm_group.py -------------------------------------------------------------------------------- /sortinghat/core/migrations/0010_alter_individual_options_individual_last_reviewed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/migrations/0010_alter_individual_options_individual_last_reviewed.py -------------------------------------------------------------------------------- /sortinghat/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sortinghat/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/models.py -------------------------------------------------------------------------------- /sortinghat/core/recommendations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/recommendations/__init__.py -------------------------------------------------------------------------------- /sortinghat/core/recommendations/affiliation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/recommendations/affiliation.py -------------------------------------------------------------------------------- /sortinghat/core/recommendations/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/recommendations/engine.py -------------------------------------------------------------------------------- /sortinghat/core/recommendations/exclusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/recommendations/exclusion.py -------------------------------------------------------------------------------- /sortinghat/core/recommendations/gender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/recommendations/gender.py -------------------------------------------------------------------------------- /sortinghat/core/recommendations/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/recommendations/matching.py -------------------------------------------------------------------------------- /sortinghat/core/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/schema.py -------------------------------------------------------------------------------- /sortinghat/core/tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/tenant.py -------------------------------------------------------------------------------- /sortinghat/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/core/views.py -------------------------------------------------------------------------------- /sortinghat/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sortinghat/server/sortinghat_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/server/sortinghat_admin.py -------------------------------------------------------------------------------- /sortinghat/server/sortinghatd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/server/sortinghatd.py -------------------------------------------------------------------------------- /sortinghat/server/sortinghatw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/server/sortinghatw.py -------------------------------------------------------------------------------- /sortinghat/server/utils/create_sh_0_7_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/server/utils/create_sh_0_7_fixture.py -------------------------------------------------------------------------------- /sortinghat/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/sortinghat/utils/__init__.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/config_file.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/config_file.cfg -------------------------------------------------------------------------------- /tests/cli/test_cmd_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_add.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_config.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_countries.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_enroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_enroll.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_lock.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_merge.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_mv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_mv.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_orgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_orgs.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_profile.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_rm.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_show.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_split.py -------------------------------------------------------------------------------- /tests/cli/test_cmd_withdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/cli/test_cmd_withdraw.py -------------------------------------------------------------------------------- /tests/importer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/importer/data/gitdm/gitdm_email_aliases_valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/importer/data/gitdm/gitdm_email_aliases_valid.txt -------------------------------------------------------------------------------- /tests/importer/data/gitdm/gitdm_email_to_employer_invalid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/importer/data/gitdm/gitdm_email_to_employer_invalid.txt -------------------------------------------------------------------------------- /tests/importer/data/gitdm/gitdm_email_to_employer_valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/importer/data/gitdm/gitdm_email_to_employer_valid.txt -------------------------------------------------------------------------------- /tests/importer/mocked_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/importer/mocked_package/backend_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/importer/mocked_package/backend_a.py -------------------------------------------------------------------------------- /tests/importer/mocked_package/nested_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/importer/mocked_package/nested_package/nested_backend_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/importer/mocked_package/nested_package/nested_backend_b.py -------------------------------------------------------------------------------- /tests/importer/mocked_package/nested_package/nested_backend_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/importer/mocked_package/nested_package/nested_backend_c.py -------------------------------------------------------------------------------- /tests/importer/mocked_package/nested_package/nested_not_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/importer/mocked_package/nested_package/nested_not_backend.py -------------------------------------------------------------------------------- /tests/importer/test_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/importer/test_backend.py -------------------------------------------------------------------------------- /tests/importer/test_gitdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/importer/test_gitdm.py -------------------------------------------------------------------------------- /tests/importer/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/importer/test_utils.py -------------------------------------------------------------------------------- /tests/rec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/rec/test_affiliations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/rec/test_affiliations.py -------------------------------------------------------------------------------- /tests/rec/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/rec/test_engine.py -------------------------------------------------------------------------------- /tests/rec/test_exclusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/rec/test_exclusion.py -------------------------------------------------------------------------------- /tests/rec/test_gender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/rec/test_gender.py -------------------------------------------------------------------------------- /tests/rec/test_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/rec/test_matches.py -------------------------------------------------------------------------------- /tests/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/runners.py -------------------------------------------------------------------------------- /tests/tenants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tenants/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/tenants/test_jobs.py -------------------------------------------------------------------------------- /tests/tenants/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/tenants/test_middleware.py -------------------------------------------------------------------------------- /tests/tenants/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/tenants/test_schema.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/test_aux.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/test_db.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/test_jobs.py -------------------------------------------------------------------------------- /tests/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/test_log.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/test_schema.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/.eslintrc.js -------------------------------------------------------------------------------- /ui/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/.storybook/main.js -------------------------------------------------------------------------------- /ui/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/.storybook/preview-head.html -------------------------------------------------------------------------------- /ui/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/.storybook/preview.js -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/babel.config.js -------------------------------------------------------------------------------- /ui/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/cypress.config.js -------------------------------------------------------------------------------- /ui/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/jest.config.js -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/public/favicon-grimoirelab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/public/favicon-grimoirelab.ico -------------------------------------------------------------------------------- /ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/public/index.html -------------------------------------------------------------------------------- /ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/App.vue -------------------------------------------------------------------------------- /ui/src/apollo/fragments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/apollo/fragments.js -------------------------------------------------------------------------------- /ui/src/apollo/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/apollo/mutations.js -------------------------------------------------------------------------------- /ui/src/apollo/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/apollo/queries.js -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Italic.woff -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Italic.woff2 -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Light.woff -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Light.woff2 -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-LightItalic.woff -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-LightItalic.woff2 -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Medium.woff -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-MediumItalic.woff -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-MediumItalic.woff2 -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Regular.woff -------------------------------------------------------------------------------- /ui/src/assets/fonts/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/fonts/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /ui/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/logo.png -------------------------------------------------------------------------------- /ui/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/assets/logo.svg -------------------------------------------------------------------------------- /ui/src/components/Avatar.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/Avatar.stories.js -------------------------------------------------------------------------------- /ui/src/components/Avatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/Avatar.vue -------------------------------------------------------------------------------- /ui/src/components/ChangeLog.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ChangeLog.stories.js -------------------------------------------------------------------------------- /ui/src/components/ChangeLog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ChangeLog.vue -------------------------------------------------------------------------------- /ui/src/components/DateInput.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/DateInput.stories.js -------------------------------------------------------------------------------- /ui/src/components/DateInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/DateInput.vue -------------------------------------------------------------------------------- /ui/src/components/EditDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/EditDialog.vue -------------------------------------------------------------------------------- /ui/src/components/EnrollModal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/EnrollModal.stories.js -------------------------------------------------------------------------------- /ui/src/components/EnrollModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/EnrollModal.vue -------------------------------------------------------------------------------- /ui/src/components/EnrollmentList.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/EnrollmentList.stories.js -------------------------------------------------------------------------------- /ui/src/components/EnrollmentList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/EnrollmentList.vue -------------------------------------------------------------------------------- /ui/src/components/ExpandedIndividual.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ExpandedIndividual.stories.js -------------------------------------------------------------------------------- /ui/src/components/ExpandedIndividual.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ExpandedIndividual.vue -------------------------------------------------------------------------------- /ui/src/components/ExpandedOrganization.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ExpandedOrganization.stories.js -------------------------------------------------------------------------------- /ui/src/components/ExpandedOrganization.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ExpandedOrganization.vue -------------------------------------------------------------------------------- /ui/src/components/GenericModal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/GenericModal.stories.js -------------------------------------------------------------------------------- /ui/src/components/GenericModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/GenericModal.vue -------------------------------------------------------------------------------- /ui/src/components/GerritIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/GerritIcon.vue -------------------------------------------------------------------------------- /ui/src/components/IdentitiesList.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/IdentitiesList.stories.js -------------------------------------------------------------------------------- /ui/src/components/IdentitiesList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/IdentitiesList.vue -------------------------------------------------------------------------------- /ui/src/components/Identity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/Identity.vue -------------------------------------------------------------------------------- /ui/src/components/ImporterModal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ImporterModal.stories.js -------------------------------------------------------------------------------- /ui/src/components/ImporterModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ImporterModal.vue -------------------------------------------------------------------------------- /ui/src/components/Indentity.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/Indentity.stories.js -------------------------------------------------------------------------------- /ui/src/components/IndividualCard.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/IndividualCard.stories.js -------------------------------------------------------------------------------- /ui/src/components/IndividualCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/IndividualCard.vue -------------------------------------------------------------------------------- /ui/src/components/IndividualEntry.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/IndividualEntry.stories.js -------------------------------------------------------------------------------- /ui/src/components/IndividualEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/IndividualEntry.vue -------------------------------------------------------------------------------- /ui/src/components/IndividualsData.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/IndividualsData.vue -------------------------------------------------------------------------------- /ui/src/components/IndividualsGrid.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/IndividualsGrid.stories.js -------------------------------------------------------------------------------- /ui/src/components/IndividualsGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/IndividualsGrid.vue -------------------------------------------------------------------------------- /ui/src/components/IndividualsTable.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/IndividualsTable.stories.js -------------------------------------------------------------------------------- /ui/src/components/IndividualsTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/IndividualsTable.vue -------------------------------------------------------------------------------- /ui/src/components/JobModal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/JobModal.stories.js -------------------------------------------------------------------------------- /ui/src/components/JobModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/JobModal.vue -------------------------------------------------------------------------------- /ui/src/components/JobsTable.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/JobsTable.stories.js -------------------------------------------------------------------------------- /ui/src/components/JobsTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/JobsTable.vue -------------------------------------------------------------------------------- /ui/src/components/LoadingSpinner.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/LoadingSpinner.stories.js -------------------------------------------------------------------------------- /ui/src/components/LoadingSpinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/LoadingSpinner.vue -------------------------------------------------------------------------------- /ui/src/components/MatchesModal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/MatchesModal.stories.js -------------------------------------------------------------------------------- /ui/src/components/MatchesModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/MatchesModal.vue -------------------------------------------------------------------------------- /ui/src/components/OrganizationEntry.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/OrganizationEntry.stories.js -------------------------------------------------------------------------------- /ui/src/components/OrganizationEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/OrganizationEntry.vue -------------------------------------------------------------------------------- /ui/src/components/OrganizationModal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/OrganizationModal.stories.js -------------------------------------------------------------------------------- /ui/src/components/OrganizationModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/OrganizationModal.vue -------------------------------------------------------------------------------- /ui/src/components/OrganizationSelector.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/OrganizationSelector.stories.js -------------------------------------------------------------------------------- /ui/src/components/OrganizationSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/OrganizationSelector.vue -------------------------------------------------------------------------------- /ui/src/components/OrganizationsTable.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/OrganizationsTable.stories.js -------------------------------------------------------------------------------- /ui/src/components/OrganizationsTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/OrganizationsTable.vue -------------------------------------------------------------------------------- /ui/src/components/ProfileCard.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ProfileCard.stories.js -------------------------------------------------------------------------------- /ui/src/components/ProfileCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ProfileCard.vue -------------------------------------------------------------------------------- /ui/src/components/ProfileList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ProfileList.vue -------------------------------------------------------------------------------- /ui/src/components/ProfileModal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ProfileModal.stories.js -------------------------------------------------------------------------------- /ui/src/components/ProfileModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/ProfileModal.vue -------------------------------------------------------------------------------- /ui/src/components/Recommendation.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/Recommendation.stories.js -------------------------------------------------------------------------------- /ui/src/components/Recommendations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/Recommendations.vue -------------------------------------------------------------------------------- /ui/src/components/Search.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/Search.stories.js -------------------------------------------------------------------------------- /ui/src/components/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/Search.vue -------------------------------------------------------------------------------- /ui/src/components/TasksTable.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/TasksTable.stories.js -------------------------------------------------------------------------------- /ui/src/components/TasksTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/TasksTable.vue -------------------------------------------------------------------------------- /ui/src/components/TeamEnrollModal.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/TeamEnrollModal.stories.js -------------------------------------------------------------------------------- /ui/src/components/TeamEnrollModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/TeamEnrollModal.vue -------------------------------------------------------------------------------- /ui/src/components/WorkSpace.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/WorkSpace.stories.js -------------------------------------------------------------------------------- /ui/src/components/WorkSpace.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/components/WorkSpace.vue -------------------------------------------------------------------------------- /ui/src/composables/useModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/composables/useModal.js -------------------------------------------------------------------------------- /ui/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/main.js -------------------------------------------------------------------------------- /ui/src/mixins/enroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/mixins/enroll.js -------------------------------------------------------------------------------- /ui/src/plugins/dateFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/plugins/dateFormatter.js -------------------------------------------------------------------------------- /ui/src/plugins/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/plugins/errors.js -------------------------------------------------------------------------------- /ui/src/plugins/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/plugins/logger.js -------------------------------------------------------------------------------- /ui/src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/plugins/vuetify.js -------------------------------------------------------------------------------- /ui/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/router/index.js -------------------------------------------------------------------------------- /ui/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/store/index.js -------------------------------------------------------------------------------- /ui/src/styles/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/styles/_typography.scss -------------------------------------------------------------------------------- /ui/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/styles/index.scss -------------------------------------------------------------------------------- /ui/src/utils/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/utils/actions.js -------------------------------------------------------------------------------- /ui/src/views/ChangePassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/views/ChangePassword.vue -------------------------------------------------------------------------------- /ui/src/views/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/views/Dashboard.vue -------------------------------------------------------------------------------- /ui/src/views/Individual.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/views/Individual.vue -------------------------------------------------------------------------------- /ui/src/views/Jobs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/views/Jobs.vue -------------------------------------------------------------------------------- /ui/src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/views/Login.vue -------------------------------------------------------------------------------- /ui/src/views/Organization.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/views/Organization.vue -------------------------------------------------------------------------------- /ui/src/views/SearchHelp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/views/SearchHelp.vue -------------------------------------------------------------------------------- /ui/src/views/SettingsGeneral.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/views/SettingsGeneral.vue -------------------------------------------------------------------------------- /ui/src/views/SettingsLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/views/SettingsLayout.vue -------------------------------------------------------------------------------- /ui/src/views/SettingsSync.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/src/views/SettingsSync.vue -------------------------------------------------------------------------------- /ui/tests/e2e/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/e2e/.eslintrc.js -------------------------------------------------------------------------------- /ui/tests/e2e/specs/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/e2e/specs/spec.cy.js -------------------------------------------------------------------------------- /ui/tests/e2e/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/e2e/support/commands.js -------------------------------------------------------------------------------- /ui/tests/e2e/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/e2e/support/index.js -------------------------------------------------------------------------------- /ui/tests/e2e/utils/graphql-test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/e2e/utils/graphql-test-utils.js -------------------------------------------------------------------------------- /ui/tests/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/setup.js -------------------------------------------------------------------------------- /ui/tests/unit/__snapshots__/individual.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/__snapshots__/individual.spec.js.snap -------------------------------------------------------------------------------- /ui/tests/unit/__snapshots__/mutations.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/__snapshots__/mutations.spec.js.snap -------------------------------------------------------------------------------- /ui/tests/unit/__snapshots__/queries.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/__snapshots__/queries.spec.js.snap -------------------------------------------------------------------------------- /ui/tests/unit/__snapshots__/storybook.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/__snapshots__/storybook.spec.js.snap -------------------------------------------------------------------------------- /ui/tests/unit/dateInput.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/dateInput.spec.js -------------------------------------------------------------------------------- /ui/tests/unit/errors.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/errors.spec.js -------------------------------------------------------------------------------- /ui/tests/unit/individual.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/individual.spec.js -------------------------------------------------------------------------------- /ui/tests/unit/logger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/logger.spec.js -------------------------------------------------------------------------------- /ui/tests/unit/mutations.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/mutations.spec.js -------------------------------------------------------------------------------- /ui/tests/unit/queries.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/queries.spec.js -------------------------------------------------------------------------------- /ui/tests/unit/search.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/search.spec.js -------------------------------------------------------------------------------- /ui/tests/unit/storybook.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/storybook.spec.js -------------------------------------------------------------------------------- /ui/tests/unit/workspace.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/tests/unit/workspace.spec.js -------------------------------------------------------------------------------- /ui/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/vue.config.js -------------------------------------------------------------------------------- /ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/grimoirelab-sortinghat/HEAD/ui/yarn.lock --------------------------------------------------------------------------------