UNPKG
mc-core
Version:
latest (1.0.0-alpha.1)
1.0.0-alpha.1
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Deployments made simple
github.com/space-race/mc-core
space-race/mc-core
mc-core
/
ui
/
assets
/
js
/
controllers
/
dashboard.js
8 lines
(5 loc)
•
218 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export
default
[
'$scope'
,
'$http'
,
'socket'
,
function
(
$scope
,
$http
, socket
)
{
$http
.
get
(
'/api/pipeline-executions/recent'
).
then
(response => {
$scope
.pipelineExecutions = response.data.data.
slice
(
0
,
5
) }) }]