Skip to content

Commit

Permalink
Merge branch 'staging' into deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
horcsinbalint committed Jul 14, 2024
2 parents d33ef7d + 6486a42 commit df5c9e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/RegisterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function showRegistrationForm()
{
return view('auth.register', [
'user_type' => Role::COLLEGIST,
'application_open' => ApplicationController::getApplicationDeadline() > now(),
'application_open' => app(ApplicationController::class)->isActive(),
// 'countries' => require base_path('countries.php'),
]);
}
Expand Down
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

'name' => env('APP_NAME', 'Urán'),

'version' => '3.23.2', // update on release
'version' => '3.23.3', // update on release

'logo_blue_path' => env('APP_ENV', "local") != "production" ? '/img/mars.png' : '/img/uran_blue.png',

Expand Down

0 comments on commit df5c9e8

Please sign in to comment.