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
Jérome Perrin
gitlab-ce
Commits
a74c1243
Commit
a74c1243
authored
Jun 27, 2016
by
Jeroen Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't include archived projects when creating group milestones
parent
219413c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
CHANGELOG
CHANGELOG
+1
-0
app/views/groups/milestones/new.html.haml
app/views/groups/milestones/new.html.haml
+2
-2
No files found.
CHANGELOG
View file @
a74c1243
...
...
@@ -54,6 +54,7 @@ v 8.13.0 (unreleased)
- Close todos when accepting merge requests via the API !6486 (tonygambone)
- Changed Slack service user referencing from full name to username (Sebastian Poxhofer)
- Add Container Registry on/off status to Admin Area !6638 (the-undefined)
- Don't include archived projects when creating group milestones (!4940)
v 8.12.4 (unreleased)
- Fix type mismatch bug when closing Jira issue
...
...
app/views/groups/milestones/new.html.haml
View file @
a74c1243
...
...
@@ -33,8 +33,8 @@
.form-group
=
f
.
label
:projects
,
"Projects"
,
class:
"control-label"
.col-sm-10
=
f
.
collection_select
:project_ids
,
@group
.
projects
,
:id
,
:name
,
{
selected:
@group
.
projects
.
map
(
&
:id
)
},
multiple:
true
,
class:
'select2'
=
f
.
collection_select
:project_ids
,
@group
.
projects
.
non_archived
,
:id
,
:name
,
{
selected:
@group
.
projects
.
non_archived
.
pluck
(
:id
)
},
multiple:
true
,
class:
'select2'
.col-md-6
.form-group
...
...
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