BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
d0279ccb
Commit
d0279ccb
authored
Sep 05, 2016
by
Patricio Cano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct helper for group LFS status.
parent
c788c66a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
groups_helper.rb
app/helpers/groups_helper.rb
+14
-14
No files found.
app/helpers/groups_helper.rb
View file @
d0279ccb
...
...
@@ -24,27 +24,27 @@ module GroupsHelper
end
end
def
projects_with_lfs_enabled
(
group
)
lfs_enabled
=
group
.
projects
.
select
(
&
:lfs_enabled?
).
size
def
projects_with_lfs_enabled
(
group
,
status
)
if
status
lfs_status
=
group
.
projects
.
select
(
&
:lfs_enabled?
).
size
else
lfs_status
=
group
.
projects
.
select
{
|
p
|
!
p
.
lfs_enabled?
}.
size
end
size
=
group
.
projects
.
size
if
lfs_
enabled
==
size
||
lfs_enabled
==
0
'
on all projects'
if
lfs_
status
==
size
||
lfs_status
==
0
'on all projects'
else
"
on
#{
lfs_enabled
}
/
#{
size
}
projects"
"
on
#{
lfs_status
}
out of
#{
size
}
projects"
end
end
def
group_lfs_status
(
group
)
if
group
.
lfs_enabled?
output
=
content_tag
(
:span
,
class:
'lfs-enabled'
)
do
'Enabled'
end
else
output
=
content_tag
(
:span
,
class:
'lfs-disabled'
)
do
'Disabled'
end
status
=
group
.
lfs_enabled?
?
'enabled'
:
'disabled'
content_tag
(
:span
,
class:
"lfs-
#{
status
}
"
)
do
"
#{
status
.
humanize
}
#{
projects_with_lfs_enabled
(
group
,
group
.
lfs_enabled?
)
}
"
end
output
<<
projects_with_lfs_enabled
(
group
)
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