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
e1c5eb48
Commit
e1c5eb48
authored
Jul 06, 2016
by
tiagonbotelho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
implements filter_params
parent
850bb6db
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
0 deletions
+21
-0
lib/api/entities.rb
lib/api/entities.rb
+2
-0
lib/api/helpers.rb
lib/api/helpers.rb
+17
-0
lib/api/projects.rb
lib/api/projects.rb
+2
-0
No files found.
lib/api/entities.rb
View file @
e1c5eb48
...
...
@@ -344,7 +344,9 @@ module API
class
ProjectWithAccess
<
Project
expose
:permissions
do
expose
:project_access
,
using:
Entities
::
ProjectAccess
do
|
project
,
options
|
project
=
Project
.
find_by
(
project
[
:id
])
project
.
project_members
.
find_by
(
user_id:
options
[
:user
].
id
)
]
end
expose
:group_access
,
using:
Entities
::
GroupAccess
do
|
project
,
options
|
...
...
lib/api/helpers.rb
View file @
e1c5eb48
...
...
@@ -287,6 +287,23 @@ module API
# Projects helpers
def
filter_params
(
projects
)
project_entries
=
[]
# Removes the redundant information of the object
projects
.
each
do
|
project
|
entry
=
{
id:
project
.
id
,
http_url_to_repo:
project
.
http_url_to_repo
,
name_with_namespace:
project
.
name_with_namespace
}
project_entries
<<
entry
end
project_entries
end
def
filter_projects
(
projects
)
# If the archived parameter is passed, limit results accordingly
if
params
[
:archived
].
present?
...
...
lib/api/projects.rb
View file @
e1c5eb48
...
...
@@ -25,6 +25,8 @@ module API
@projects
=
current_user
.
authorized_projects
@projects
=
filter_projects
(
@projects
)
@projects
=
paginate
@projects
@projects
=
filter_params
(
@projects
)
puts
present
@projects
,
with:
Entities
::
ProjectWithAccess
,
user:
current_user
present
@projects
,
with:
Entities
::
ProjectWithAccess
,
user:
current_user
end
...
...
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