Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
e44fffe1ed44
Commit
7844fa1f
authored
May 13, 2017
by
Douwe Maan
Browse files
Add auxiliary viewer for CONTRIBUTING
parent
a05bf5d0ebc0
Changes
4
Hide whitespace changes
Inline
Side-by-side
app/helpers/blob_helper.rb
View file @
e44fffe1
...
...
@@ -278,4 +278,19 @@ def blob_render_error_options(viewer)
options
end
def
contribution_options
(
project
)
options
=
[]
if
can?
(
current_user
,
:create_issue
,
project
)
options
<<
link_to
(
"submit an issue"
,
new_namespace_project_issue_path
(
project
.
namespace
,
project
))
end
merge_project
=
can?
(
current_user
,
:create_merge_request
,
project
)
?
project
:
(
current_user
&&
current_user
.
fork_of
(
project
))
if
merge_project
options
<<
link_to
(
"create a merge request"
,
new_namespace_project_merge_request_path
(
project
.
namespace
,
project
))
end
options
end
end
app/models/blob.rb
View file @
e44fffe1
...
...
@@ -39,7 +39,9 @@ class Blob < SimpleDelegator
AUXILIARY_VIEWERS
=
[
BlobViewer
::
GitlabCiYml
,
BlobViewer
::
RouteMap
,
BlobViewer
::
License
BlobViewer
::
License
,
BlobViewer
::
Contributing
].
freeze
attr_reader
:project
...
...
app/models/blob_viewer/contributing.rb
0 → 100644
View file @
e44fffe1
module
BlobViewer
class
Contributing
<
Base
include
Auxiliary
include
Static
self
.
partial_name
=
'contributing'
self
.
file_types
=
%i(contributing)
self
.
binary
=
false
end
end
app/views/projects/blob/viewers/_contributing.html.haml
0 → 100644
View file @
e44fffe1
=
icon
(
'book fw'
)
After you've reviewed these contribution guidelines, you'll be all set to
-
options
=
contribution_options
(
viewer
.
project
)
-
if
options
.
any?
=
succeed
'.'
do
=
options
.
to_sentence
(
two_words_connector:
' or '
,
last_word_connector:
', or '
).
html_safe
-
else
contribute to this project.
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