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
f20875ec
Commit
f20875ec
authored
Nov 11, 2016
by
Clement Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add username to gon
parent
9c8a86f6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
7 deletions
+9
-7
search_autocomplete.js.es6
app/assets/javascripts/search_autocomplete.js.es6
+4
-3
gon_helper.rb
lib/gitlab/gon_helper.rb
+1
-0
search_spec.rb
spec/features/search_spec.rb
+4
-4
No files found.
app/assets/javascripts/search_autocomplete.js.es6
View file @
f20875ec
...
...
@@ -142,8 +142,9 @@
}
getCategoryContents() {
var dashboardOptions, groupOptions, issuesPath, items, mrPath, name, options, projectOptions, userId, utils;
var dashboardOptions, groupOptions, issuesPath, items, mrPath, name, options, projectOptions, userId, u
serName, u
tils;
userId = gon.current_user_id;
userName = gon.current_username;
utils = gl.utils, projectOptions = gl.projectOptions, groupOptions = gl.groupOptions, dashboardOptions = gl.dashboardOptions;
if (utils.isInGroupsPage() && groupOptions) {
options = groupOptions[utils.getGroupSlug()];
...
...
@@ -158,10 +159,10 @@
header: "" + name
}, {
text: 'Issues assigned to me',
url: issuesPath + "/?assignee_
id=" + userId
url: issuesPath + "/?assignee_
username=" + userName
}, {
text: "Issues I've created",
url: issuesPath + "/?author_
id=" + userId
url: issuesPath + "/?author_
username=" + userName
}, 'separator', {
text: 'Merge requests assigned to me',
url: mrPath + "/?assignee_id=" + userId
...
...
lib/gitlab/gon_helper.rb
View file @
f20875ec
...
...
@@ -13,6 +13,7 @@ module Gitlab
if
current_user
gon
.
current_user_id
=
current_user
.
id
gon
.
current_username
=
current_user
.
username
end
end
end
...
...
spec/features/search_spec.rb
View file @
f20875ec
...
...
@@ -169,16 +169,16 @@ describe "Search", feature: true do
find
(
'.dropdown-menu'
).
click_link
'Issues assigned to me'
sleep
2
expect
(
page
).
to
have_selector
(
'.
issues-holder
'
)
expect
(
find
(
'.
js-assignee-search .dropdown-toggle-text'
)).
to
have_content
(
user
.
name
)
expect
(
page
).
to
have_selector
(
'.
filtered-search
'
)
expect
(
find
(
'.
filtered-search'
).
value
).
to
eq
(
"assignee:
#{
user
.
username
}
"
)
end
it
'takes user to her issues page when issues authored is clicked'
do
find
(
'.dropdown-menu'
).
click_link
"Issues I've created"
sleep
2
expect
(
page
).
to
have_selector
(
'.
issues-holder
'
)
expect
(
find
(
'.
js-author-search .dropdown-toggle-text'
)).
to
have_content
(
user
.
name
)
expect
(
page
).
to
have_selector
(
'.
filtered-search
'
)
expect
(
find
(
'.
filtered-search'
).
value
).
to
eq
(
"author:
#{
user
.
username
}
"
)
end
it
'takes user to her MR page when MR assigned is clicked'
do
...
...
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