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
Léo-Paul Géneau
gitlab-ce
Commits
5f38f672
Commit
5f38f672
authored
Jul 05, 2012
by
Nihad Abbasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't expose full user info unless needed
parent
61910eb8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
lib/api/entities.rb
lib/api/entities.rb
+6
-2
No files found.
lib/api/entities.rb
View file @
5f38f672
...
...
@@ -5,9 +5,13 @@ module Gitlab
:dark_scheme
,
:theme_id
,
:blocked
,
:created_at
end
class
UserBasic
<
Grape
::
Entity
expose
:id
,
:email
,
:name
,
:blocked
,
:created_at
end
class
Project
<
Grape
::
Entity
expose
:id
,
:code
,
:name
,
:description
,
:path
,
:default_branch
expose
:owner
,
:using
=>
Entities
::
User
expose
:owner
,
:using
=>
Entities
::
User
Basic
expose
:private_flag
,
:as
=>
:private
expose
:issues_enabled
,
:merge_requests_enabled
,
:wall_enabled
,
:wiki_enabled
,
:created_at
end
...
...
@@ -22,7 +26,7 @@ module Gitlab
class
ProjectSnippet
<
Grape
::
Entity
expose
:id
,
:title
,
:file_name
expose
:author
,
:using
=>
Entities
::
User
expose
:author
,
:using
=>
Entities
::
User
Basic
expose
:expires_at
,
:updated_at
,
:created_at
end
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