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
0
Merge Requests
0
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
Tatuya Kamada
gitlab-ce
Commits
b71b0acd
Commit
b71b0acd
authored
Jan 19, 2017
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'zj-fix-admin-templates' into 'master'
Fix Slash command templates Closes #26042 See merge request !8320
parents
d3f26be6
df99883d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
101 additions
and
73 deletions
+101
-73
app/views/projects/services/mattermost_slash_commands/_help.html.haml
...ojects/services/mattermost_slash_commands/_help.html.haml
+2
-2
app/views/projects/services/slack_slash_commands/_help.html.haml
...ws/projects/services/slack_slash_commands/_help.html.haml
+73
-71
spec/controllers/admin/services_controller_spec.rb
spec/controllers/admin/services_controller_spec.rb
+26
-0
No files found.
app/views/projects/services/mattermost_slash_commands/_help.html.haml
View file @
b71b0acd
...
...
@@ -8,8 +8,8 @@
by entering
%code
/
<
command_trigger_word
>
help
-
unless
enabled
-
unless
enabled
||
@service
.
template?
=
render
'projects/services/mattermost_slash_commands/detailed_help'
,
subject:
@service
-
if
enabled
-
if
enabled
&&
!
@service
.
template?
=
render
'projects/services/mattermost_slash_commands/installation_info'
,
subject:
@service
app/views/projects/services/slack_slash_commands/_help.html.haml
View file @
b71b0acd
-
run_actions_text
=
"Perform common operations on this project:
#{
@project
.
name_with_namespace
}
"
-
pretty_name
=
defined?
(
@project
)
?
@project
.
name_with_namespace
:
"namespace / path"
-
run_actions_text
=
"Perform common operations on this project:
#{
pretty_name
}
"
.well
This service allows GitLab users to perform common operations on this
...
...
@@ -9,6 +10,7 @@
%code
/
<
command
>
help
%br
%br
-
unless
@service
.
template?
To setup this service:
%ul
.list-unstyled
%li
...
...
spec/controllers/admin/services_controller_spec.rb
0 → 100644
View file @
b71b0acd
require
'spec_helper'
describe
Admin
::
ServicesController
do
let
(
:admin
)
{
create
(
:admin
)
}
before
{
sign_in
(
admin
)
}
describe
'GET #edit'
do
let!
(
:project
)
{
create
(
:empty_project
)
}
Service
.
available_services_names
.
each
do
|
service_name
|
context
"
#{
service_name
}
"
do
let!
(
:service
)
do
service_template
=
service_name
.
concat
(
"_service"
).
camelize
.
constantize
service_template
.
where
(
template:
true
).
first_or_create
end
it
'successfully displays the template'
do
get
:edit
,
id:
service
.
id
expect
(
response
).
to
have_http_status
(
200
)
end
end
end
end
end
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