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
c19ff6b6
Commit
c19ff6b6
authored
Mar 02, 2018
by
Constance Okoghenun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed webpack bundle tag for add_gitlab_slack_application
parent
68a13836
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
9 deletions
+5
-9
config/webpack.config.js
config/webpack.config.js
+0
-1
ee/app/assets/javascripts/add_gitlab_slack_application/index.js
.../assets/javascripts/add_gitlab_slack_application/index.js
+2
-6
ee/app/assets/javascripts/pages/profiles/slacks/index.js
ee/app/assets/javascripts/pages/profiles/slacks/index.js
+3
-0
ee/app/views/profiles/slacks/edit.html.haml
ee/app/views/profiles/slacks/edit.html.haml
+0
-2
No files found.
config/webpack.config.js
View file @
c19ff6b6
...
...
@@ -63,7 +63,6 @@ function generateEntries() {
webpack_runtime
:
'
./webpack.js
'
,
// EE-only
add_gitlab_slack_application
:
'
ee/add_gitlab_slack_application/index.js
'
,
burndown_chart
:
'
ee/burndown_chart/index.js
'
,
geo_nodes
:
'
ee/geo_nodes
'
,
ldap_group_links
:
'
ee/groups/ldap_group_links.js
'
,
...
...
ee/app/assets/javascripts/add_gitlab_slack_application/index.js
View file @
c19ff6b6
import
Vue
from
'
vue
'
;
import
AddGitlabSlackApplication
from
'
./components/add_gitlab_slack_application.vue
'
;
function
mountAddGitlabSlackApplication
()
{
export
default
()
=>
{
const
el
=
document
.
getElementById
(
'
js-add-gitlab-slack-application-entry-point
'
);
if
(
!
el
)
return
;
...
...
@@ -23,8 +23,4 @@ function mountAddGitlabSlackApplication() {
docsPath
:
initialData
.
docs_path
,
},
}).
$mount
(
el
);
}
document
.
addEventListener
(
'
DOMContentLoaded
'
,
mountAddGitlabSlackApplication
);
export
default
mountAddGitlabSlackApplication
;
};
ee/app/assets/javascripts/pages/profiles/slacks/index.js
0 → 100644
View file @
c19ff6b6
import
mountAddGitlabSlackApplication
from
'
ee/add_gitlab_slack_application
'
;
document
.
addEventListener
(
'
DOMContentLoaded
'
,
()
=>
mountAddGitlabSlackApplication
());
ee/app/views/profiles/slacks/edit.html.haml
View file @
c19ff6b6
=
webpack_bundle_tag
'add_gitlab_slack_application'
-# haml-lint:disable InlineJavaScript
%script
#js-add-gitlab-slack-application-entry-data
{
type:
"application/json"
}
=
add_to_slack_data
(
@projects
)
...
...
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