diff options
author | Evan Read <eread@gitlab.com> | 2019-06-04 09:04:49 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2019-06-04 09:04:49 +0000 |
commit | 839430492cfaca3d0f21a44fc4fc2fd2472b0c33 (patch) | |
tree | 2ac4d3fedc3e4d3b3f3eac490cace4631fd9d7b9 | |
parent | 554fbb2a49936a8038ee2e26231b69922009023a (diff) | |
download | gitlab-ce-839430492cfaca3d0f21a44fc4fc2fd2472b0c33.tar.gz |
Fixes some Phabricator import docs problems
-rw-r--r-- | doc/user/project/import/phabricator.md | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/doc/user/project/import/phabricator.md b/doc/user/project/import/phabricator.md index 4d1d99fd35b..5c624e3aff6 100644 --- a/doc/user/project/import/phabricator.md +++ b/doc/user/project/import/phabricator.md @@ -15,18 +15,15 @@ Currently, only the following basic fields are imported: - Created at - Closed at - ## 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: -1. Enable Phabricator as an [import source](../../admin_area/settings/visibility_and_access_controls.md#import-sources) in the Admin area. +1. Run the following command in a Rails console: - ``` {.ruby} - Feature.enable(:phabricator_import) - ``` + ```ruby + Feature.enable(:phabricator_import) + ``` -The [import -source](../../admin_area/settings/visibility_and_access_controls.md#import-sources) -also needs to be activated by an admin in the admin interface. +1. Enable Phabricator as an [import source](../../admin_area/settings/visibility_and_access_controls.md#import-sources) in the Admin area. |