Commit 368857f94294c46d06b0292d1efa602914930079
1 parent
9ba864b0
ga output
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/library/App/Controllers/GaController.php
... | ... | @@ -34,7 +34,7 @@ class GaController extends CrudResourceController { |
34 | 34 | $get_start_date = $this->request->get('start') ?? '30daysAgo'; |
35 | 35 | $get_end_date = $this->request->get('end') ?? 'today'; |
36 | 36 | |
37 | - if (empty($view_id)) { | |
37 | + if (true) { | |
38 | 38 | $projects = Project::find(['user_id' => $user_id]); |
39 | 39 | foreach ($projects as $project) { |
40 | 40 | $result[] = $this->sendGaRequest($project->id, $get_metrics, $get_dimensions, $get_start_date, $get_end_date); | ... | ... |