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
0085f01a
Commit
0085f01a
authored
Dec 11, 2018
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master' into ce-to-ee-2018-12-11
parents
f7348f91
352af3e5
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
69 additions
and
4 deletions
+69
-4
app/assets/javascripts/notes/components/noteable_discussion.vue
...sets/javascripts/notes/components/noteable_discussion.vue
+5
-1
app/controllers/import/github_controller.rb
app/controllers/import/github_controller.rb
+1
-1
changelogs/unreleased/sh-fix-github-import-without-oauth2-config.yml
...unreleased/sh-fix-github-import-without-oauth2-config.yml
+5
-0
changelogs/unreleased/winh-princess-mononospace.yml
changelogs/unreleased/winh-princess-mononospace.yml
+5
-0
spec/controllers/import/github_controller_spec.rb
spec/controllers/import/github_controller_spec.rb
+9
-0
spec/javascripts/notes/components/noteable_discussion_spec.js
.../javascripts/notes/components/noteable_discussion_spec.js
+44
-2
No files found.
app/assets/javascripts/notes/components/noteable_discussion.vue
View file @
0085f01a
...
...
@@ -170,10 +170,14 @@ export default {
return
expanded
||
this
.
alwaysExpanded
||
isResolvedNonDiffDiscussion
;
},
actionText
()
{
const
commitId
=
this
.
discussion
.
commit_id
?
truncateSha
(
this
.
discussion
.
commit_id
)
:
''
;
const
linkStart
=
`<a href="
${
_
.
escape
(
this
.
discussion
.
discussion_path
)}
">`
;
const
linkEnd
=
'
</a>
'
;
let
{
commit_id
:
commitId
}
=
this
.
discussion
;
if
(
commitId
)
{
commitId
=
`<span class="commit-sha">
${
truncateSha
(
commitId
)}
</span>`
;
}
let
text
=
s__
(
'
MergeRequests|started a discussion
'
);
if
(
this
.
discussion
.
for_commit
)
{
...
...
app/controllers/import/github_controller.rb
View file @
0085f01a
...
...
@@ -9,7 +9,7 @@ class Import::GithubController < Import::BaseController
rescue_from
Octokit
::
Unauthorized
,
with: :provider_unauthorized
def
new
if
logged_in_with_provider?
if
github_import_configured?
&&
logged_in_with_provider?
go_to_provider_for_permissions
elsif
session
[
access_token_key
]
redirect_to
status_import_url
...
...
changelogs/unreleased/sh-fix-github-import-without-oauth2-config.yml
0 → 100644
View file @
0085f01a
---
title
:
Allow GitHub imports via token even if OAuth2 provider not configured
merge_request
:
23703
author
:
type
:
fixed
changelogs/unreleased/winh-princess-mononospace.yml
0 → 100644
View file @
0085f01a
---
title
:
Make commit IDs in merge request discussion header monospace
merge_request
:
23562
author
:
type
:
changed
spec/controllers/import/github_controller_spec.rb
View file @
0085f01a
...
...
@@ -16,6 +16,15 @@ describe Import::GithubController do
get
:new
end
it
"prompts for an access token if GitHub not configured"
do
allow
(
controller
).
to
receive
(
:github_import_configured?
).
and_return
(
false
)
expect
(
controller
).
not_to
receive
(
:go_to_provider_for_permissions
)
get
:new
expect
(
response
).
to
have_http_status
(
200
)
end
end
describe
"GET callback"
do
...
...
spec/javascripts/notes/components/noteable_discussion_spec.js
View file @
0085f01a
...
...
@@ -42,12 +42,14 @@ describe('noteable_discussion component', () => {
const
discussion
=
{
...
discussionMock
};
discussion
.
diff_file
=
mockDiffFile
;
discussion
.
diff_discussion
=
true
;
const
diffDiscussionVm
=
new
Component
({
vm
.
$destroy
();
vm
=
new
Component
({
store
,
propsData
:
{
discussion
},
}).
$mount
();
expect
(
diffDiscussionV
m
.
$el
.
querySelector
(
'
.discussion-header
'
)).
not
.
toBeNull
();
expect
(
v
m
.
$el
.
querySelector
(
'
.discussion-header
'
)).
not
.
toBeNull
();
});
describe
(
'
actions
'
,
()
=>
{
...
...
@@ -130,4 +132,44 @@ describe('noteable_discussion component', () => {
expect
(
note
).
toEqual
(
data
);
});
});
describe
(
'
commit discussion
'
,
()
=>
{
const
commitId
=
'
razupaltuff
'
;
beforeEach
(()
=>
{
vm
.
$destroy
();
store
.
state
.
diffs
=
{
projectPath
:
'
something
'
,
};
vm
.
$destroy
();
vm
=
new
Component
({
propsData
:
{
discussion
:
{
...
discussionMock
,
for_commit
:
true
,
commit_id
:
commitId
,
diff_discussion
:
true
,
diff_file
:
{
...
mockDiffFile
,
},
},
renderDiffFile
:
true
,
},
store
,
}).
$mount
();
});
it
(
'
displays a monospace started a discussion on commit
'
,
()
=>
{
const
truncatedCommitId
=
commitId
.
substr
(
0
,
8
);
expect
(
vm
.
$el
).
toContainText
(
`started a discussion on commit
${
truncatedCommitId
}
`
);
const
commitElement
=
vm
.
$el
.
querySelector
(
'
.commit-sha
'
);
expect
(
commitElement
).
not
.
toBe
(
null
);
expect
(
commitElement
).
toHaveText
(
truncatedCommitId
);
});
});
});
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