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
7b90680c
Commit
7b90680c
authored
Oct 12, 2016
by
Airat Shigapov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use guard clause instead of if-else statement
parent
32cf2e5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
13 deletions
+12
-13
app/models/project_services/hipchat_service.rb
app/models/project_services/hipchat_service.rb
+12
-13
No files found.
app/models/project_services/hipchat_service.rb
View file @
7b90680c
...
@@ -128,22 +128,21 @@ class HipchatService < Service
...
@@ -128,22 +128,21 @@ class HipchatService < Service
end
end
def
markdown
(
text
,
options
=
{})
def
markdown
(
text
,
options
=
{})
if
text
return
""
unless
text
context
=
{
project:
project
,
pipeline: :email
}
Banzai
.
render
(
text
,
context
)
context
=
{
project:
project
,
pipeline: :email
}
context
.
merge!
(
options
)
Banzai
.
render
(
text
,
context
)
html
=
Banzai
.
render
(
text
,
context
)
context
.
merge!
(
options
)
html
=
Banzai
.
post_process
(
html
,
context
)
sanitize
html
,
attributes:
%w(href title al
t)
html
=
Banzai
.
render
(
text
,
contex
t
)
else
html
=
Banzai
.
post_process
(
html
,
context
)
""
end
sanitize
html
,
attributes:
%w(href title alt)
end
end
def
create_issue_message
(
data
)
def
create_issue_message
(
data
)
...
...
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