2020-06-08 14:08:27 -04:00
---
type: howto
stage: Manage
group: Import
2020-11-26 01:09:20 -05:00
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2020-06-08 14:08:27 -04:00
---
2019-04-23 10:27:01 -04:00
# Import Phabricator tasks into a GitLab project
2020-05-21 23:08:28 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/60562) in GitLab 12.0.
2019-04-23 10:27:01 -04:00
2020-12-04 16:09:29 -05:00
WARNING:
2020-11-23 22:09:18 -05:00
The Phabricator task importer is in
[beta ](https://about.gitlab.com/handbook/product/gitlab-the-product/#beta ) and is
[**not** complete ](https://gitlab.com/gitlab-org/gitlab/-/issues/284406 ). It imports
only an issue's title and description. The GitLab project created during the import
process contains only issues, and the associated repository is disabled.
2019-04-23 10:27:01 -04:00
GitLab allows you to import all tasks from a Phabricator instance into
GitLab issues. The import creates a single project with the
repository disabled.
Currently, only the following basic fields are imported:
- Title
- Description
- State (open or closed)
- Created at
- Closed at
2019-07-03 13:44:05 -04:00
## Users
The assignee and author of a user are deducted from a Task's owner and
author: If a user with the same username has access to the namespace
of the project being imported into, then the user will be linked.
2019-04-23 10:27:01 -04:00
## Enabling this feature
While this feature is incomplete, a feature flag is required to enable it so that
we can gain early feedback before releasing it for everyone. To enable it:
2019-06-04 05:04:49 -04:00
1. Run the following command in a Rails console:
2019-04-23 10:27:01 -04:00
2019-06-04 05:04:49 -04:00
```ruby
Feature.enable(:phabricator_import)
```
2019-04-23 10:27:01 -04:00
2020-01-08 19:07:40 -05:00
1. Enable Phabricator as an [import source ](../../admin_area/settings/visibility_and_access_controls.md#import-sources ) in the Admin Area.