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
e057ad97
Commit
e057ad97
authored
Apr 24, 2017
by
Pawel Chojnacki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DeploymentsSerializer can serialize arrays properly
parent
e1e0b763
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
deployments_controller.rb
app/controllers/projects/deployments_controller.rb
+3
-4
No files found.
app/controllers/projects/deployments_controller.rb
View file @
e057ad97
class
Projects
::
DeploymentsController
<
Projects
::
ApplicationController
class
Projects
::
DeploymentsController
<
Projects
::
ApplicationController
before_action
:authorize_read_environment!
before_action
:authorize_read_deployment!
before_action
:authorize_read_deployment!
def
index
def
index
serializer
=
DeploymentSerializer
.
new
(
user:
@current_user
,
project:
project
)
deployments
=
environment
.
deployments
.
reorder
(
created_at: :desc
)
deployments
=
environment
.
deployments
.
reorder
(
created_at: :desc
)
deployments
=
deployments
.
where
(
'created_at > ?'
,
params
[
:after
].
to_time
)
if
params
[
:after
]
&
.
to_time
deployments
=
deployments
.
where
(
'created_at > ?'
,
params
[
:after
].
to_time
)
if
params
[
:after
]
&
.
to_time
deployments
=
deployments
.
map
{
|
deployment
|
serializer
.
represent
(
deployment
)
}
render
json:
{
deployments:
deployments
}
render
json:
{
deployments:
DeploymentSerializer
.
new
(
user:
@current_user
,
project:
project
)
.
represent
(
deployments
)
}
end
end
private
private
...
...
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