From e088096568c907d99ed0074b4abc609dc8712543 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 31 Mar 2017 16:08:51 +0300 Subject: [PATCH] add get_report_dates() example response --- app/library/App/Resources/AllPositionResource.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/library/App/Resources/AllPositionResource.php b/app/library/App/Resources/AllPositionResource.php index 463d6dc..753d965 100644 --- a/app/library/App/Resources/AllPositionResource.php +++ b/app/library/App/Resources/AllPositionResource.php @@ -268,12 +268,12 @@ class AllPositionResource extends ApiResource ], ]) ->exampleResponse([ - "2017-02-13" => "0.2", - "2017-02-15" => "0.2", - "2017-02-20" => "0.3", - "2017-02-26" => "0.3", - "2017-03-06" => "0.3", - "2017-03-12" => "0.2" + "2017-02-13", + "2017-02-15", + "2017-02-20", + "2017-02-26", + "2017-03-06", + "2017-03-12" ]) ->allow(AclRoles::USER) ) -- libgit2 0.21.4