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
0e325ea6
Commit
0e325ea6
authored
Apr 05, 2017
by
Jose Ivan Vargas Lopez
Committed by
Jose Ivan Vargas
Apr 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Groups section capitalization fix
parent
7997a0df
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
app/views/groups/edit.html.haml
app/views/groups/edit.html.haml
+1
-1
app/views/groups/issues.html.haml
app/views/groups/issues.html.haml
+1
-1
app/views/groups/milestones/index.html.haml
app/views/groups/milestones/index.html.haml
+1
-1
app/views/groups/milestones/new.html.haml
app/views/groups/milestones/new.html.haml
+1
-1
app/views/groups/projects.html.haml
app/views/groups/projects.html.haml
+1
-1
features/steps/group/milestones.rb
features/steps/group/milestones.rb
+2
-2
spec/features/groups_spec.rb
spec/features/groups_spec.rb
+1
-1
No files found.
app/views/groups/edit.html.haml
View file @
0e325ea6
...
@@ -51,4 +51,4 @@
...
@@ -51,4 +51,4 @@
%strong
Removed group can not be restored!
%strong
Removed group can not be restored!
.form-actions
.form-actions
=
link_to
'Remove
G
roup'
,
@group
,
data:
{
confirm:
'Removed group can not be restored! Are you sure?'
},
method: :delete
,
class:
"btn btn-remove"
=
link_to
'Remove
g
roup'
,
@group
,
data:
{
confirm:
'Removed group can not be restored! Are you sure?'
},
method: :delete
,
class:
"btn btn-remove"
app/views/groups/issues.html.haml
View file @
0e325ea6
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
=
icon
(
'rss'
)
=
icon
(
'rss'
)
%span
.icon-label
%span
.icon-label
Subscribe
Subscribe
=
render
'shared/new_project_item_select'
,
path:
'issues/new'
,
label:
"New
I
ssue"
=
render
'shared/new_project_item_select'
,
path:
'issues/new'
,
label:
"New
i
ssue"
=
render
'shared/issuable/filter'
,
type: :issues
=
render
'shared/issuable/filter'
,
type: :issues
...
...
app/views/groups/milestones/index.html.haml
View file @
0e325ea6
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
.nav-controls
.nav-controls
-
if
can?
(
current_user
,
:admin_milestones
,
@group
)
-
if
can?
(
current_user
,
:admin_milestones
,
@group
)
=
link_to
new_group_milestone_path
(
@group
),
class:
"btn btn-new"
do
=
link_to
new_group_milestone_path
(
@group
),
class:
"btn btn-new"
do
New
M
ilestone
New
m
ilestone
.row-content-block
.row-content-block
Only milestones from
Only milestones from
...
...
app/views/groups/milestones/new.html.haml
View file @
0e325ea6
...
@@ -39,5 +39,5 @@
...
@@ -39,5 +39,5 @@
=
render
"shared/milestones/form_dates"
,
f:
f
=
render
"shared/milestones/form_dates"
,
f:
f
.form-actions
.form-actions
=
f
.
submit
'Create
M
ilestone'
,
class:
"btn-create btn"
=
f
.
submit
'Create
m
ilestone'
,
class:
"btn-create btn"
=
link_to
"Cancel"
,
group_milestones_path
(
@group
),
class:
"btn btn-cancel"
=
link_to
"Cancel"
,
group_milestones_path
(
@group
),
class:
"btn btn-cancel"
app/views/groups/projects.html.haml
View file @
0e325ea6
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
-
if
can?
current_user
,
:admin_group
,
@group
-
if
can?
current_user
,
:admin_group
,
@group
.controls
.controls
=
link_to
new_project_path
(
namespace_id:
@group
.
id
),
class:
"btn btn-sm btn-success"
do
=
link_to
new_project_path
(
namespace_id:
@group
.
id
),
class:
"btn btn-sm btn-success"
do
New
P
roject
New
p
roject
%ul
.well-list
%ul
.well-list
-
@projects
.
each
do
|
project
|
-
@projects
.
each
do
|
project
|
%li
%li
...
...
features/steps/group/milestones.rb
View file @
0e325ea6
...
@@ -46,11 +46,11 @@ class Spinach::Features::GroupMilestones < Spinach::FeatureSteps
...
@@ -46,11 +46,11 @@ class Spinach::Features::GroupMilestones < Spinach::FeatureSteps
end
end
step
'I click new milestone button'
do
step
'I click new milestone button'
do
click_link
"New
M
ilestone"
click_link
"New
m
ilestone"
end
end
step
'I press create mileston button'
do
step
'I press create mileston button'
do
click_button
"Create
M
ilestone"
click_button
"Create
m
ilestone"
end
end
step
'milestone in each project should be created'
do
step
'milestone in each project should be created'
do
...
...
spec/features/groups_spec.rb
View file @
0e325ea6
...
@@ -153,7 +153,7 @@ feature 'Group', feature: true do
...
@@ -153,7 +153,7 @@ feature 'Group', feature: true do
end
end
it
'removes group'
do
it
'removes group'
do
click_link
'Remove
G
roup'
click_link
'Remove
g
roup'
expect
(
page
).
to
have_content
"scheduled for deletion"
expect
(
page
).
to
have_content
"scheduled for deletion"
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