Update StoryController, fix expiration time bug

pull/2803/head
Daniel Supernault 4 years ago
parent 174260787e
commit 39e57f9506
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -158,7 +158,7 @@ class StoryController extends Controller
$story->active = true; $story->active = true;
$story->duration = $request->input('duration', 10); $story->duration = $request->input('duration', 10);
$story->expires_at = now()->addHours(24); $story->expires_at = now()->addMinutes(1450);
$story->save(); $story->save();
return [ return [

Loading…
Cancel
Save