From ee0f8556eb0d17a00cbe383d1ddadd60edfe92e3 Mon Sep 17 00:00:00 2001 From: Ephemera Date: Tue, 16 Feb 2016 09:57:09 +0900 Subject: [PATCH] Add reserved username It's used like username on GHE when [domain is http(s)://[hostname]/gist](https://help.github.com/enterprise/2.4/user/articles/creating-gists/#creating-a-gist) --- src/adapters/github.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adapters/github.js b/src/adapters/github.js index 5277d04..4633b3c 100644 --- a/src/adapters/github.js +++ b/src/adapters/github.js @@ -6,7 +6,7 @@ const GH_RESERVED_USER_NAMES = [ 'search', 'developer', 'account', 'pulls', 'issues', 'features', 'contact', 'security', 'join', 'login', 'watching', - 'new', 'integrations' + 'new', 'integrations', 'gist' ] const GH_RESERVED_REPO_NAMES = ['followers', 'following', 'repositories'] const GH_404_SEL = '#parallax_wrapper'