Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b366744d
Commit
b366744d
authored
Jan 09, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EE port of ph-dispatcher-1
parent
6dc2e23c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
8 deletions
+25
-8
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+4
-8
app/assets/javascripts/pages/admin/conversational_development_index/show/index.js
...ages/admin/conversational_development_index/show/index.js
+3
-0
app/assets/javascripts/pages/ci/lints/ci_lint_editor.js
app/assets/javascripts/pages/ci/lints/ci_lint_editor.js
+0
-0
app/assets/javascripts/pages/ci/lints/index.js
app/assets/javascripts/pages/ci/lints/index.js
+3
-0
app/assets/javascripts/pages/import/fogbugz/new_user_map/index.js
...ts/javascripts/pages/import/fogbugz/new_user_map/index.js
+3
-0
app/assets/javascripts/pages/snippets/show/index.js
app/assets/javascripts/pages/snippets/show/index.js
+12
-0
No files found.
app/assets/javascripts/dispatcher.js
View file @
b366744d
...
@@ -13,7 +13,6 @@ import groupAvatar from './group_avatar';
...
@@ -13,7 +13,6 @@ import groupAvatar from './group_avatar';
import
GroupLabelSubscription
from
'
./group_label_subscription
'
;
import
GroupLabelSubscription
from
'
./group_label_subscription
'
;
import
LineHighlighter
from
'
./line_highlighter
'
;
import
LineHighlighter
from
'
./line_highlighter
'
;
import
BuildArtifacts
from
'
./build_artifacts
'
;
import
BuildArtifacts
from
'
./build_artifacts
'
;
import
CILintEditor
from
'
./ci_lint_editor
'
;
import
groupsSelect
from
'
./groups_select
'
;
import
groupsSelect
from
'
./groups_select
'
;
import
Search
from
'
./search
'
;
import
Search
from
'
./search
'
;
import
initAdmin
from
'
./admin
'
;
import
initAdmin
from
'
./admin
'
;
...
@@ -618,22 +617,19 @@ import initLDAPGroupsSelect from 'ee/ldap_groups_select'; // eslint-disable-line
...
@@ -618,22 +617,19 @@ import initLDAPGroupsSelect from 'ee/ldap_groups_select'; // eslint-disable-line
break
;
break
;
case
'
ci:lints:create
'
:
case
'
ci:lints:create
'
:
case
'
ci:lints:show
'
:
case
'
ci:lints:show
'
:
new
CILintEditor
(
);
import
(
'
./pages/ci/lints
'
).
then
(
m
=>
m
.
default
()).
catch
(
fail
);
break
;
break
;
case
'
users:show
'
:
case
'
users:show
'
:
import
(
'
./pages/users/show
'
).
then
(
callDefault
).
catch
(
fail
);
import
(
'
./pages/users/show
'
).
then
(
callDefault
).
catch
(
fail
);
break
;
break
;
case
'
admin:conversational_development_index:show
'
:
case
'
admin:conversational_development_index:show
'
:
new
UserCallout
(
);
import
(
'
./pages/admin/conversational_development_index/show
'
).
then
(
m
=>
m
.
default
()).
catch
(
fail
);
break
;
break
;
case
'
snippets:show
'
:
case
'
snippets:show
'
:
new
LineHighlighter
();
import
(
'
./pages/snippets/show
'
).
then
(
m
=>
m
.
default
()).
catch
(
fail
);
new
BlobViewer
();
initNotes
();
new
ZenMode
();
break
;
break
;
case
'
import:fogbugz:new_user_map
'
:
case
'
import:fogbugz:new_user_map
'
:
new
UsersSelect
(
);
import
(
'
./pages/import/fogbugz/new_user_map
'
).
then
(
m
=>
m
.
default
()).
catch
(
fail
);
break
;
break
;
case
'
profiles:personal_access_tokens:index
'
:
case
'
profiles:personal_access_tokens:index
'
:
case
'
admin:impersonation_tokens:index
'
:
case
'
admin:impersonation_tokens:index
'
:
...
...
app/assets/javascripts/pages/admin/conversational_development_index/show/index.js
0 → 100644
View file @
b366744d
import
UserCallout
from
'
../../../../user_callout
'
;
export
default
()
=>
new
UserCallout
();
app/assets/javascripts/ci_lint_editor.js
→
app/assets/javascripts/
pages/ci/lints/
ci_lint_editor.js
View file @
b366744d
File moved
app/assets/javascripts/pages/ci/lints/index.js
0 → 100644
View file @
b366744d
import
CILintEditor
from
'
./ci_lint_editor
'
;
export
default
()
=>
new
CILintEditor
();
app/assets/javascripts/pages/import/fogbugz/new_user_map/index.js
0 → 100644
View file @
b366744d
import
UsersSelect
from
'
../../../../users_select
'
;
export
default
()
=>
new
UsersSelect
();
app/assets/javascripts/pages/snippets/show/index.js
0 → 100644
View file @
b366744d
/* eslint-disable no-new */
import
LineHighlighter
from
'
../../../line_highlighter
'
;
import
BlobViewer
from
'
../../../blob/viewer
'
;
import
ZenMode
from
'
../../../zen_mode
'
;
import
initNotes
from
'
../../../init_notes
'
;
export
default
()
=>
{
new
LineHighlighter
();
new
BlobViewer
();
initNotes
();
new
ZenMode
();
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment