We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4df8b17 commit a1bf02dCopy full SHA for a1bf02d
summit-video-app/code/SummitVideoAppBackend.php
@@ -288,7 +288,11 @@ public function getSpeakers($params = [])
288
public function getSummits($params = [])
289
{
290
$summits = Summit::get()
291
- ->filter('SummitBeginDate:LessThan', SS_DateTime::now()->Rfc2822())
+ ->filter(
292
+ [
293
+ 'SummitBeginDate:LessThan' => SS_DateTime::now()->Rfc2822(),
294
+ 'AvailableOnApi' => true
295
+ ])
296
->sort('SummitBeginDate DESC');
297
298
$response = [
0 commit comments