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
bd01a5a4
Commit
bd01a5a4
authored
Nov 07, 2016
by
Grzegorz Bizon
Committed by
Filipa Lacerda
Nov 16, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add EnvironmentSerializer to EnvironmentsController
parent
14345b21
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
16 deletions
+3
-16
app/controllers/projects/environments_controller.rb
app/controllers/projects/environments_controller.rb
+3
-16
No files found.
app/controllers/projects/environments_controller.rb
View file @
bd01a5a4
...
...
@@ -13,7 +13,9 @@ class Projects::EnvironmentsController < Projects::ApplicationController
respond_to
do
|
format
|
format
.
html
format
.
json
do
render
json:
serialize_as_json
(
@environments
)
render
json:
EnvironmentSerializer
.
new
(
project:
@project
)
.
represent
(
@environments
)
end
end
end
...
...
@@ -63,19 +65,4 @@ class Projects::EnvironmentsController < Projects::ApplicationController
def
environment
@environment
||=
project
.
environments
.
find
(
params
[
:id
])
end
def
serialize_as_json
(
resource
)
resource
.
as_json
(
include:
{
last_deployment:
{
include:
{
user:
{
only:
[
:id
,
:name
,
:username
],
methods:
[
:avatar_url
]
},
deployable:
{
only:
[
:id
,
:name
,
:ref
,
:tag
]
}
},
methods:
[
:short_sha
,
:commit_title
,
:commit
]
},
project:
{
methods:
[
:namespace
]
}
}
)
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