فهرست منبع

Update AccountTransformer, add last_fetched_at attribute

Daniel Supernault 5 سال پیش
والد
کامیت
38b0233e96
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      app/Transformer/Api/AccountTransformer.php

+ 2 - 1
app/Transformer/Api/AccountTransformer.php

@@ -34,7 +34,8 @@ class AccountTransformer extends Fractal\TransformerAbstract
 			'local' => (bool) $local,
 			'is_admin' => (bool) $is_admin,
 			'created_at' => $profile->created_at->toJSON(),
-			'header_bg' => $profile->header_bg
+			'header_bg' => $profile->header_bg,
+			'last_fetched_at' => optional($profile->last_fetched_at)->toJSON()
 		];
 	}