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
7d3c46e3
Commit
7d3c46e3
authored
Mar 14, 2016
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extract confidential icon to a helper
parent
254161c2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
app/helpers/issues_helper.rb
app/helpers/issues_helper.rb
+4
-0
app/views/projects/issues/_issue.html.haml
app/views/projects/issues/_issue.html.haml
+1
-3
app/views/projects/issues/show.html.haml
app/views/projects/issues/show.html.haml
+1
-2
app/views/search/results/_issue.html.haml
app/views/search/results/_issue.html.haml
+1
-2
No files found.
app/helpers/issues_helper.rb
View file @
7d3c46e3
...
...
@@ -98,6 +98,10 @@ module IssuesHelper
end
.
sort
.
to_sentence
(
last_word_connector:
', or '
)
end
def
confidential_icon
(
issue
)
icon
(
'eye-slash'
)
if
issue
.
confidential?
end
def
emoji_icon
(
name
,
unicode
=
nil
,
aliases
=
[])
unicode
||=
Emoji
.
emoji_filename
(
name
)
rescue
""
...
...
app/views/projects/issues/_issue.html.haml
View file @
7d3c46e3
...
...
@@ -5,9 +5,7 @@
.issue-title
%span
.issue-title-text
-
if
issue
.
confidential?
=
icon
(
'eye-slash'
)
=
confidential_icon
(
issue
)
=
link_to_gfm
issue
.
title
,
issue_path
(
issue
),
class:
"title"
%ul
.controls.light
-
if
issue
.
closed?
...
...
app/views/projects/issues/show.html.haml
View file @
7d3c46e3
...
...
@@ -22,8 +22,7 @@
=
icon
(
'angle-double-left'
)
.issue-meta
-
if
@issue
.
confidential
=
icon
(
'eye-slash'
)
=
confidential_icon
(
@issue
)
%strong
.identifier
Issue ##{@issue.iid}
%span
.creator
...
...
app/views/search/results/_issue.html.haml
View file @
7d3c46e3
.search-result-row
%h4
-
if
issue
.
confidential?
=
icon
(
'eye-slash'
)
=
confidential_icon
(
issue
)
=
link_to
[
issue
.
project
.
namespace
.
becomes
(
Namespace
),
issue
.
project
,
issue
]
do
%span
.term.str-truncated
=
issue
.
title
.pull-right
##{issue.iid}
...
...
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