Skip to content

Commit

Permalink
Enable logging and automatic login by default
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjmead committed Aug 3, 2024
1 parent 14ce144 commit 0888a82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Domain/ConfigTypes/Template.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public function enable_error_logging(): bool
return $this->defaults->enable_error_logging;
}

return false;
return true;
}

public function enable_automatic_login(): bool
Expand All @@ -225,7 +225,7 @@ public function enable_automatic_login(): bool
return $this->defaults->enable_error_logging;
}

return false;
return true;
}

public function get_theme(): string
Expand Down

0 comments on commit 0888a82

Please sign in to comment.